3.42.5-debian-10-r98 release
This commit is contained in:
parent
85dc66045b
commit
24da53a2bf
|
|
@ -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" \
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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).
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue