[bitnami/mysql] Release 5.7.42-debian-11-r0 (#30839)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot 2023-04-19 01:17:35 +02:00 committed by GitHub
parent 30b01e245b
commit 3a564370ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 10 deletions

View File

@ -3,13 +3,13 @@ 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-16T21:39:12Z" \
org.opencontainers.image.created="2023-04-18T22:56:12Z" \
org.opencontainers.image.description="Application packaged by VMware, Inc" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="5.7.41-debian-11-r26" \
org.opencontainers.image.ref.name="5.7.42-debian-11-r0" \
org.opencontainers.image.title="mysql" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="5.7.41"
org.opencontainers.image.version="5.7.42"
ENV HOME="/" \
OS_ARCH="${TARGETARCH:-amd64}" \
@ -23,7 +23,7 @@ RUN install_packages ca-certificates curl libaio1 libcom-err2 libcrypt1 libgcc-s
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
COMPONENTS=( \
"ini-file-1.4.5-4-linux-${OS_ARCH}-debian-11" \
"mysql-5.7.41-3-linux-${OS_ARCH}-debian-11" \
"mysql-5.7.42-0-linux-${OS_ARCH}-debian-11" \
"gosu-1.16.0-5-linux-${OS_ARCH}-debian-11" \
) && \
for COMPONENT in "${COMPONENTS[@]}"; do \
@ -43,7 +43,7 @@ RUN mkdir /docker-entrypoint-initdb.d
COPY rootfs /
RUN /opt/bitnami/scripts/mysql/postunpack.sh
ENV APP_VERSION="5.7.41" \
ENV APP_VERSION="5.7.42" \
BITNAMI_APP_NAME="mysql" \
PATH="/opt/bitnami/common/bin:/opt/bitnami/mysql/bin:/opt/bitnami/mysql/sbin:$PATH"

View File

@ -15,6 +15,6 @@
"arch": "amd64",
"distro": "debian-11",
"type": "NAMI",
"version": "5.7.41-3"
"version": "5.7.42-0"
}
}

View File

@ -724,7 +724,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[@]}")
@ -863,9 +863,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\'"

View File

@ -1,4 +1,4 @@
rolling-tags:
- "5.7"
- 5.7-debian-11
- 5.7.41
- 5.7.42