[bitnami/wordpress-nginx] Release 6.2.0-debian-11-r10 (#30822)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot 2023-04-18 20:14:10 +02:00 committed by GitHub
parent fcbba320a9
commit b3baf32cf5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 7 deletions

View File

@ -3,10 +3,10 @@ FROM docker.io/bitnami/minideb:bullseye
ARG TARGETARCH
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \
org.opencontainers.image.created="2023-04-17T16:25:18Z" \
org.opencontainers.image.created="2023-04-18T17:25:20Z" \
org.opencontainers.image.description="Application packaged by VMware, Inc" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="6.2.0-debian-11-r9" \
org.opencontainers.image.ref.name="6.2.0-debian-11-r10" \
org.opencontainers.image.title="wordpress-nginx" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="6.2.0"
@ -25,7 +25,7 @@ RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
"php-8.1.18-0-linux-${OS_ARCH}-debian-11" \
"nginx-1.23.4-3-linux-${OS_ARCH}-debian-11" \
"mysql-client-10.6.12-4-linux-${OS_ARCH}-debian-11" \
"wordpress-6.2.0-7-linux-${OS_ARCH}-debian-11" \
"wordpress-6.2.0-8-linux-${OS_ARCH}-debian-11" \
"render-template-1.0.5-4-linux-${OS_ARCH}-debian-11" \
"gosu-1.16.0-5-linux-${OS_ARCH}-debian-11" \
) && \

View File

@ -33,6 +33,6 @@
"arch": "amd64",
"distro": "debian-11",
"type": "NAMI",
"version": "6.2.0-7"
"version": "6.2.0-8"
}
}

View File

@ -447,7 +447,7 @@ mysql_stop() {
mysql_install_db() {
local command="${DB_BIN_DIR}/mysql_install_db"
local -a args=("--defaults-file=${DB_CONF_FILE}" "--basedir=${DB_BASE_DIR}" "--datadir=${DB_DATA_DIR}")
# Add flags specified via the 'DB_EXTRA_FLAGS' environment variable
read -r -a db_extra_flags <<< "$(mysql_extra_flags)"
[[ "${#db_extra_flags[@]}" -gt 0 ]] && args+=("${db_extra_flags[@]}")
@ -586,9 +586,9 @@ mysql_ensure_user_exists() {
auth_string="identified via pam using '$DB_FLAVOR'"
elif [[ -n "$password" ]]; then
if [[ -n "$auth_plugin" ]]; then
auth_string="identified with $auth_plugin by \"$password\""
auth_string="identified with $auth_plugin by '$password'"
else
auth_string="identified by \"$password\""
auth_string="identified by '$password'"
fi
fi
debug "creating database user \'$user\'"