mirror of
https://github.com/bitnami/containers.git
synced 2026-02-19 22:17:24 +08:00
2.1.0-debian-10-r38 release
This commit is contained in:
@@ -3,11 +3,11 @@ LABEL maintainer "Bitnami <containers@bitnami.com>"
|
||||
|
||||
ENV BITNAMI_PKG_CHMOD="-R g+rwX" \
|
||||
HOME="/" \
|
||||
PATH="/opt/bitnami/node/bin:/opt/bitnami/common/bin:/opt/bitnami/parse-dashboard/bin:/opt/bitnami/nami/bin:$PATH"
|
||||
PATH="/opt/bitnami/node/bin:/opt/bitnami/python/bin:/opt/bitnami/common/bin:/opt/bitnami/parse-dashboard/bin:/opt/bitnami/nami/bin:$PATH"
|
||||
|
||||
COPY prebuildfs /
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages ca-certificates curl dirmngr ghostscript gnupg imagemagick libbz2-1.0 libc6 libffi6 libgcc1 liblzma5 libncursesw6 libreadline7 libsqlite3-0 libssl1.1 libstdc++6 libtinfo6 procps sudo unzip zlib1g
|
||||
RUN install_packages ca-certificates curl dirmngr ghostscript gnupg gzip imagemagick libbz2-1.0 libc6 libffi6 libgcc1 liblzma5 libncursesw6 libreadline7 libsqlite3-0 libssl1.1 libstdc++6 libtinfo6 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
|
||||
@@ -19,8 +19,11 @@ RUN apt-get update && apt-get upgrade -y && \
|
||||
|
||||
COPY rootfs /
|
||||
ENV BITNAMI_APP_NAME="parse-dashboard" \
|
||||
BITNAMI_IMAGE_VERSION="2.1.0-debian-10-r37" \
|
||||
BITNAMI_IMAGE_VERSION="2.1.0-debian-10-r38" \
|
||||
NAMI_PREFIX="/.nami" \
|
||||
OS_ARCH="amd64" \
|
||||
OS_FLAVOUR="debian-10" \
|
||||
OS_NAME="linux" \
|
||||
PARSE_APP_ID="myappID" \
|
||||
PARSE_DASHBOARD_APP_NAME="MyDashboard" \
|
||||
PARSE_DASHBOARD_PASSWORD="bitnami" \
|
||||
@@ -32,7 +35,7 @@ ENV BITNAMI_APP_NAME="parse-dashboard" \
|
||||
PARSE_PROTOCOL="http" \
|
||||
PARSE_USE_HOSTNAME="no"
|
||||
|
||||
EXPOSE 4040
|
||||
EXPOSE 4040 3000
|
||||
|
||||
USER 1001
|
||||
ENTRYPOINT [ "/app-entrypoint.sh" ]
|
||||
|
||||
@@ -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:3'
|
||||
image: 'docker.io/bitnami/parse:3-debian-10'
|
||||
ports:
|
||||
- '1337:1337'
|
||||
volumes:
|
||||
@@ -13,7 +13,7 @@ services:
|
||||
depends_on:
|
||||
- mongodb
|
||||
parse-dashboard:
|
||||
image: 'bitnami/parse-dashboard:2'
|
||||
image: 'docker.io/bitnami/parse-dashboard:2-debian-10'
|
||||
ports:
|
||||
- '80:4040'
|
||||
volumes:
|
||||
|
||||
24
bitnami/parse-dashboard/2/debian-10/prebuildfs/usr/sbin/install_packages
Executable file
24
bitnami/parse-dashboard/2/debian-10/prebuildfs/usr/sbin/install_packages
Executable file
@@ -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
|
||||
@@ -35,7 +35,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/).
|
||||
|
||||
|
||||
* [`2-debian-10`, `2.1.0-debian-10-r37`, `2`, `2.1.0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-parse-dashboard/blob/2.1.0-debian-10-r37/2/debian-10/Dockerfile)
|
||||
* [`2-debian-10`, `2.1.0-debian-10-r38`, `2`, `2.1.0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-parse-dashboard/blob/2.1.0-debian-10-r38/2/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/parse-dashboard GitHub repo](https://github.com/bitnami/bitnami-docker-parse-dashboard).
|
||||
|
||||
|
||||
@@ -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:3'
|
||||
image: 'docker.io/bitnami/parse:3-debian-10'
|
||||
ports:
|
||||
- '1337:1337'
|
||||
volumes:
|
||||
@@ -13,7 +13,7 @@ services:
|
||||
depends_on:
|
||||
- mongodb
|
||||
parse-dashboard:
|
||||
image: 'bitnami/parse-dashboard:2'
|
||||
image: 'docker.io/bitnami/parse-dashboard:2-debian-10'
|
||||
ports:
|
||||
- '80:4040'
|
||||
volumes:
|
||||
|
||||
Reference in New Issue
Block a user