8.0.28-debian-10-r50 release

This commit is contained in:
Bitnami Bot
2022-03-26 03:24:16 +00:00
parent 6b33b27b16
commit 8f2f4c9d2e
5 changed files with 5 additions and 7 deletions

View File

@@ -21,7 +21,7 @@ COPY rootfs /
RUN /opt/bitnami/scripts/mysql/postunpack.sh
ENV APP_VERSION="8.0.28" \
BITNAMI_APP_NAME="mysql" \
BITNAMI_IMAGE_VERSION="8.0.28-debian-10-r49" \
BITNAMI_IMAGE_VERSION="8.0.28-debian-10-r50" \
PATH="/opt/bitnami/common/bin:/opt/bitnami/mysql/bin:/opt/bitnami/mysql/sbin:$PATH"
EXPOSE 3306

View File

@@ -392,10 +392,6 @@ web_server_update_app_configuration() {
--hosts \
| --server-name \
| --server-aliases \
| --enable-http \
| --enable-https \
| --disable-http \
| --disable-https \
| --http-port \
| --https-port \
)

View File

@@ -2,7 +2,7 @@
#
# Bitnami MySQL library
# shellcheck disable=SC1090,SC1091
# shellcheck disable=SC1090,SC1091,SC2119,SC2120
# Load Generic Libraries
. /opt/bitnami/scripts/libfile.sh
@@ -25,6 +25,7 @@
mysql_extra_flags() {
local randNumber
local -a dbExtraFlags=()
# shellcheck disable=SC2153
read -r -a userExtraFlags <<< "$DB_EXTRA_FLAGS"
if [[ -n "$DB_REPLICATION_MODE" ]]; then

View File

@@ -9,6 +9,7 @@
# 4. Environment variables set externally (i.e. current Bash context/Dockerfile/userdata)
# Load logging library
# shellcheck disable=SC1090,SC1091
. /opt/bitnami/scripts/liblog.sh
export BITNAMI_ROOT_DIR="/opt/bitnami"