4.2.0-debian-10-r49 release
This commit is contained in:
parent
90cf68f927
commit
9a07757489
|
|
@ -7,7 +7,7 @@ ENV BITNAMI_PKG_CHMOD="-R g+rwX" \
|
|||
|
||||
COPY prebuildfs /
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages ca-certificates curl dirmngr ghostscript gnupg imagemagick libbz2-1.0 libc6 libcom-err2 libcurl4 libffi6 libgcc1 libgcrypt20 libgmp10 libgnutls30 libgpg-error0 libgssapi-krb5-2 libhogweed4 libidn2-0 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libldap-2.4-2 liblzma5 libncursesw6 libnettle6 libnghttp2-14 libp11-kit0 libpsl5 libreadline7 librtmp1 libsasl2-2 libsqlite3-0 libssh2-1 libssl1.1 libstdc++6 libtasn1-6 libtinfo6 libunistring2 procps sudo unzip zlib1g
|
||||
RUN install_packages ca-certificates curl dirmngr ghostscript gnupg gzip imagemagick libbz2-1.0 libc6 libcom-err2 libcurl4 libffi6 libgcc1 libgcrypt20 libgmp10 libgnutls30 libgpg-error0 libgssapi-krb5-2 libhogweed4 libidn2-0 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libldap-2.4-2 liblzma5 libncursesw6 libnettle6 libnghttp2-14 libp11-kit0 libpsl5 libreadline7 librtmp1 libsasl2-2 libsqlite3-0 libssh2-1 libssl1.1 libstdc++6 libtasn1-6 libtinfo6 libunistring2 procps sudo tar zlib1g
|
||||
RUN /build/bitnami-user.sh
|
||||
RUN /build/install-nami.sh
|
||||
RUN bitnami-pkg install node-12.16.3-3 --checksum 5e0ba24a98ca8b75c9a5400d0d03b48862a30511b6c54e71ec92eee32fb33f29
|
||||
|
|
@ -20,12 +20,15 @@ RUN apt-get update && apt-get upgrade -y && \
|
|||
|
||||
COPY rootfs /
|
||||
ENV BITNAMI_APP_NAME="parse" \
|
||||
BITNAMI_IMAGE_VERSION="4.2.0-debian-10-r48" \
|
||||
BITNAMI_IMAGE_VERSION="4.2.0-debian-10-r49" \
|
||||
MONGODB_HOST="mongodb" \
|
||||
MONGODB_PASSWORD="" \
|
||||
MONGODB_PORT_NUMBER="27017" \
|
||||
MONGODB_USER="root" \
|
||||
NAMI_PREFIX="/.nami" \
|
||||
OS_ARCH="amd64" \
|
||||
OS_FLAVOUR="debian-10" \
|
||||
OS_NAME="linux" \
|
||||
PARSE_APP_ID="myappID" \
|
||||
PARSE_ENABLE_CLOUD_CODE="no" \
|
||||
PARSE_HOST="127.0.0.1" \
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
version: '2'
|
||||
services:
|
||||
mongodb:
|
||||
image: 'bitnami/mongodb:4.2'
|
||||
image: 'docker.io/bitnami/mongodb:4.2-debian-10'
|
||||
volumes:
|
||||
- 'mongodb_data:/bitnami'
|
||||
parse:
|
||||
image: 'bitnami/parse:4'
|
||||
image: 'docker.io/bitnami/parse:4-debian-10'
|
||||
ports:
|
||||
- '1337:1337'
|
||||
volumes:
|
||||
|
|
|
|||
|
|
@ -0,0 +1,24 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
set -u
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
n=0
|
||||
max=2
|
||||
until [ $n -gt $max ]; do
|
||||
set +e
|
||||
(
|
||||
apt-get update -qq &&
|
||||
apt-get install -y --no-install-recommends "$@"
|
||||
)
|
||||
CODE=$?
|
||||
set -e
|
||||
if [ $CODE -eq 0 ]; then
|
||||
break
|
||||
fi
|
||||
if [ $n -eq $max ]; then
|
||||
exit $CODE
|
||||
fi
|
||||
echo "apt failed, retrying"
|
||||
n=$(($n + 1))
|
||||
done
|
||||
rm -r /var/lib/apt/lists /var/cache/apt/archives
|
||||
|
|
@ -46,7 +46,7 @@ Non-root container images add an extra layer of security and are generally recom
|
|||
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
|
||||
|
||||
|
||||
* [`4-debian-10`, `4.2.0-debian-10-r48`, `4`, `4.2.0`, `latest` (4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-parse/blob/4.2.0-debian-10-r48/4/debian-10/Dockerfile)
|
||||
* [`4-debian-10`, `4.2.0-debian-10-r49`, `4`, `4.2.0`, `latest` (4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-parse/blob/4.2.0-debian-10-r49/4/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/parse GitHub repo](https://github.com/bitnami/bitnami-docker-parse).
|
||||
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
version: '2'
|
||||
services:
|
||||
mongodb:
|
||||
image: 'bitnami/mongodb:4.2'
|
||||
image: 'docker.io/bitnami/mongodb:4.2-debian-10'
|
||||
volumes:
|
||||
- 'mongodb_data:/bitnami'
|
||||
parse:
|
||||
image: 'bitnami/parse:4'
|
||||
image: 'docker.io/bitnami/parse:4-debian-10'
|
||||
ports:
|
||||
- '1337:1337'
|
||||
volumes:
|
||||
|
|
|
|||
Loading…
Reference in New Issue