mirror of
https://github.com/bitnami/containers.git
synced 2026-03-14 06:48:11 +08:00
4.9.3-debian-10-r210 release
This commit is contained in:
@@ -19,7 +19,7 @@ RUN chmod g+rwX /opt/bitnami
|
|||||||
COPY rootfs /
|
COPY rootfs /
|
||||||
RUN /opt/bitnami/scripts/parse/postunpack.sh
|
RUN /opt/bitnami/scripts/parse/postunpack.sh
|
||||||
ENV BITNAMI_APP_NAME="parse" \
|
ENV BITNAMI_APP_NAME="parse" \
|
||||||
BITNAMI_IMAGE_VERSION="4.9.3-debian-10-r209" \
|
BITNAMI_IMAGE_VERSION="4.9.3-debian-10-r210" \
|
||||||
PATH="/opt/bitnami/python/bin:/opt/bitnami/node/bin:/opt/bitnami/mongodb/bin:/opt/bitnami/mongodb-client/bin:/opt/bitnami/parse/bin:/opt/bitnami/common/bin:$PATH"
|
PATH="/opt/bitnami/python/bin:/opt/bitnami/node/bin:/opt/bitnami/mongodb/bin:/opt/bitnami/mongodb-client/bin:/opt/bitnami/parse/bin:/opt/bitnami/common/bin:$PATH"
|
||||||
|
|
||||||
EXPOSE 1337 3000
|
EXPOSE 1337 3000
|
||||||
|
|||||||
@@ -91,6 +91,22 @@ is_true_false_value() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
########################
|
||||||
|
# Check if the provided argument is a boolean 1/0 value
|
||||||
|
# Arguments:
|
||||||
|
# $1 - Value to check
|
||||||
|
# Returns:
|
||||||
|
# Boolean
|
||||||
|
#########################
|
||||||
|
is_1_0_value() {
|
||||||
|
local -r bool="${1:-}"
|
||||||
|
if [[ "$bool" =~ ^[10]$ ]]; then
|
||||||
|
true
|
||||||
|
else
|
||||||
|
false
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
########################
|
########################
|
||||||
# Check if the provided argument is an empty string or not defined
|
# Check if the provided argument is an empty string or not defined
|
||||||
# Arguments:
|
# Arguments:
|
||||||
|
|||||||
@@ -48,7 +48,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/).
|
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-10`, `4.9.3`, `4.9.3-debian-10-r209`, `latest` (4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-parse/blob/4.9.3-debian-10-r209/4/debian-10/Dockerfile)
|
* [`4`, `4-debian-10`, `4.9.3`, `4.9.3-debian-10-r210`, `latest` (4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-parse/blob/4.9.3-debian-10-r210/4/debian-10/Dockerfile)
|
||||||
|
|
||||||
Subscribe to project updates by watching the [bitnami/parse GitHub repo](https://github.com/bitnami/bitnami-docker-parse).
|
Subscribe to project updates by watching the [bitnami/parse GitHub repo](https://github.com/bitnami/bitnami-docker-parse).
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user