4.1.2-debian-11-r0 release
This commit is contained in:
parent
c78713e5fa
commit
08f0f113e4
|
|
@ -9,17 +9,17 @@ ENV HOME="/" \
|
|||
COPY prebuildfs /
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages acl ca-certificates curl gzip jq libbz2-1.0 libc6 libcom-err2 libcrypt1 libffi7 libgcc-s1 libgssapi-krb5-2 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 liblzma5 libncursesw6 libnsl2 libreadline8 libsqlite3-0 libssl1.1 libstdc++6 libtinfo6 libtirpc3 procps tar zlib1g
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "python" "3.8.13-2" --checksum 79af9dcbaa89c4047d2d24b4a4c2ae17b771fe94972734379b9e50ef3dec3442
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "node" "12.22.12-0" --checksum 77a5cf9c0d5c0b5906e081536888706c73d52a2329d50d7665d7cc44bd963e8a
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "parse-dashboard" "4.1.1-0" --checksum 14c6bd1c230c84e402e5664790ffb3e41d6d858cc452f5e4e5ed2a6d7fe50f39
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-0" --checksum da4a2f759ccc57c100d795b71ab297f48b31c4dd7578d773d963bbd49c42bd7b
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "python" "3.8.13-150" --checksum 79af9dcbaa89c4047d2d24b4a4c2ae17b771fe94972734379b9e50ef3dec3442
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "node" "12.22.12-150" --checksum 77a5cf9c0d5c0b5906e081536888706c73d52a2329d50d7665d7cc44bd963e8a
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "parse-dashboard" "4.1.2-150" --checksum fee6e5fc97969f1b03d1ad48c2e97db4d9a5c8274a6033f96508707b1350969d
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-150" --checksum da4a2f759ccc57c100d795b71ab297f48b31c4dd7578d773d963bbd49c42bd7b
|
||||
RUN apt-get update && apt-get upgrade -y && \
|
||||
rm -r /var/lib/apt/lists /var/cache/apt/archives
|
||||
RUN chmod g+rwX /opt/bitnami
|
||||
|
||||
COPY rootfs /
|
||||
RUN /opt/bitnami/scripts/parse-dashboard/postunpack.sh
|
||||
ENV APP_VERSION="4.1.1" \
|
||||
ENV APP_VERSION="4.1.2" \
|
||||
BITNAMI_APP_NAME="parse-dashboard" \
|
||||
PATH="/opt/bitnami/python/bin:/opt/bitnami/node/bin:/opt/bitnami/parse-dashboard/bin:/opt/bitnami/common/bin:$PATH"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,40 @@
|
|||
version: '2'
|
||||
services:
|
||||
mongodb:
|
||||
image: docker.io/bitnami/mongodb:5.0
|
||||
volumes:
|
||||
- 'mongodb_data:/bitnami/mongodb'
|
||||
environment:
|
||||
- ALLOW_EMPTY_PASSWORD=yes
|
||||
- MONGODB_USERNAME=bn_parse
|
||||
- MONGODB_DATABASE=bitnami_parse
|
||||
- MONGODB_PASSWORD=bitnami123
|
||||
parse:
|
||||
image: docker.io/bitnami/parse:5
|
||||
ports:
|
||||
- '1337:1337'
|
||||
volumes:
|
||||
- 'parse_data:/bitnami/parse'
|
||||
depends_on:
|
||||
- mongodb
|
||||
environment:
|
||||
- PARSE_DATABASE_HOST=mongodb
|
||||
- PARSE_DATABASE_PORT_NUMBER=27017
|
||||
- PARSE_DATABASE_USER=bn_parse
|
||||
- PARSE_DATABASE_NAME=bitnami_parse
|
||||
- PARSE_DATABASE_PASSWORD=bitnami123
|
||||
parse-dashboard:
|
||||
image: docker.io/bitnami/parse-dashboard:4
|
||||
# Overriding entrypoint so the container does not exit and we can run some basic tests
|
||||
entrypoint: tail -f /dev/null
|
||||
ports:
|
||||
- '80:4040'
|
||||
volumes:
|
||||
- 'parse_dashboard_data:/bitnami'
|
||||
depends_on:
|
||||
- parse
|
||||
volumes:
|
||||
mongodb_data:
|
||||
driver: local
|
||||
parse_data:
|
||||
driver: local
|
||||
parse_dashboard_data:
|
||||
driver: local
|
||||
|
|
|
|||
|
|
@ -4,27 +4,27 @@
|
|||
"digest": "da4a2f759ccc57c100d795b71ab297f48b31c4dd7578d773d963bbd49c42bd7b",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "1.14.0-0"
|
||||
"version": "1.14.0-150"
|
||||
},
|
||||
"node": {
|
||||
"arch": "amd64",
|
||||
"digest": "77a5cf9c0d5c0b5906e081536888706c73d52a2329d50d7665d7cc44bd963e8a",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "12.22.12-0"
|
||||
"version": "12.22.12-150"
|
||||
},
|
||||
"parse-dashboard": {
|
||||
"arch": "amd64",
|
||||
"digest": "14c6bd1c230c84e402e5664790ffb3e41d6d858cc452f5e4e5ed2a6d7fe50f39",
|
||||
"digest": "fee6e5fc97969f1b03d1ad48c2e97db4d9a5c8274a6033f96508707b1350969d",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "4.1.1-0"
|
||||
"version": "4.1.2-150"
|
||||
},
|
||||
"python": {
|
||||
"arch": "amd64",
|
||||
"digest": "79af9dcbaa89c4047d2d24b4a4c2ae17b771fe94972734379b9e50ef3dec3442",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "3.8.13-2"
|
||||
"version": "3.8.13-150"
|
||||
}
|
||||
}
|
||||
|
|
@ -58,8 +58,8 @@ component_unpack() {
|
|||
fi
|
||||
if [ -n "$package_sha256" ]; then
|
||||
echo "Verifying package integrity"
|
||||
echo "$package_sha256 ${base_name}.tar.gz" | sha256sum --check - || exit "$?"
|
||||
echo "$package_sha256 ${base_name}.tar.gz" | sha256sum --check - || return "$?"
|
||||
fi
|
||||
tar --directory "${directory}" --extract --gunzip --file "${base_name}.tar.gz" --no-same-owner --strip-components=2
|
||||
tar --directory "${directory}" --extract --gunzip --file "${base_name}.tar.gz" --no-same-owner --strip-components=2 || return "$?"
|
||||
rm "${base_name}.tar.gz"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -37,7 +37,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`, `4-debian-11`, `4.1.1`, `4.1.1-debian-11-r0`, `latest` (4/debian-11/Dockerfile)](https://github.com/bitnami/bitnami-docker-parse-dashboard/blob/4.1.1-debian-11-r0/4/debian-11/Dockerfile)
|
||||
* [`4`, `4-debian-11`, `4.1.2`, `4.1.2-debian-11-r0`, `latest` (4/debian-11/Dockerfile)](https://github.com/bitnami/bitnami-docker-parse-dashboard/blob/4.1.2-debian-11-r0/4/debian-11/Dockerfile)
|
||||
* [`3`, `3-debian-11`, `3.3.0`, `3.3.0-debian-11-r5` (3/debian-11/Dockerfile)](https://github.com/bitnami/bitnami-docker-parse-dashboard/blob/3.3.0-debian-11-r5/3/debian-11/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/parse-dashboard GitHub repo](https://github.com/bitnami/bitnami-docker-parse-dashboard).
|
||||
|
|
|
|||
Loading…
Reference in New Issue