3.42.5-debian-10-r98 release

This commit is contained in:
Bitnami Bot 2021-08-13 04:18:36 +00:00
parent 85dc66045b
commit 24da53a2bf
3 changed files with 18 additions and 2 deletions

View File

@ -21,7 +21,7 @@ RUN /opt/bitnami/scripts/ghost/postunpack.sh
RUN /opt/bitnami/scripts/mysql-client/postunpack.sh
ENV ALLOW_EMPTY_PASSWORD="no" \
BITNAMI_APP_NAME="ghost" \
BITNAMI_IMAGE_VERSION="3.42.5-debian-10-r97" \
BITNAMI_IMAGE_VERSION="3.42.5-debian-10-r98" \
LD_PRELOAD="/opt/bitnami/common/lib/libnss_wrapper.so" \
LNAME="ghost" \
MARIADB_HOST="mariadb" \

View File

@ -91,6 +91,22 @@ is_true_false_value() {
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
# Arguments:

View File

@ -42,7 +42,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
- [`4`, `4-debian-10`, `4.11.0`, `4.11.0-debian-10-r8`, `latest` (4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-ghost/blob/4.11.0-debian-10-r8/4/debian-10/Dockerfile)
- [`3`, `3-debian-10`, `3.42.5`, `3.42.5-debian-10-r97` (3/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-ghost/blob/3.42.5-debian-10-r97/3/debian-10/Dockerfile)
- [`3`, `3-debian-10`, `3.42.5`, `3.42.5-debian-10-r98` (3/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-ghost/blob/3.42.5-debian-10-r98/3/debian-10/Dockerfile)
Subscribe to project updates by watching the [bitnami/ghost GitHub repo](https://github.com/bitnami/bitnami-docker-ghost).