5.7.34-debian-10-r30 release
This commit is contained in:
parent
7aafb36d16
commit
1ae014f883
|
|
@ -18,7 +18,7 @@ RUN mkdir /docker-entrypoint-initdb.d
|
|||
COPY rootfs /
|
||||
RUN /opt/bitnami/scripts/mysql/postunpack.sh
|
||||
ENV BITNAMI_APP_NAME="mysql" \
|
||||
BITNAMI_IMAGE_VERSION="5.7.34-debian-10-r29" \
|
||||
BITNAMI_IMAGE_VERSION="5.7.34-debian-10-r30" \
|
||||
PATH="/opt/bitnami/common/bin:/opt/bitnami/mysql/bin:/opt/bitnami/mysql/sbin:$PATH"
|
||||
|
||||
EXPOSE 3306
|
||||
|
|
|
|||
|
|
@ -707,6 +707,11 @@ mysql_install_db() {
|
|||
am_i_root && args=("${args[@]}" "--user=$DB_DAEMON_USER")
|
||||
if [[ "$DB_FLAVOR" = "mariadb" ]]; then
|
||||
args+=("--auth-root-authentication-method=normal")
|
||||
# Feature available only in MariaDB 10.5+
|
||||
# ref: https://mariadb.com/kb/en/mysql_install_db/#not-creating-the-test-database-and-anonymous-user
|
||||
if [[ ! "$(mysql_get_version)" =~ ^10\.[01234]\. ]]; then
|
||||
is_boolean_yes "$DB_SKIP_TEST_DB" && args+=("--skip-test-db")
|
||||
fi
|
||||
else
|
||||
command="${DB_BIN_DIR}/mysqld"
|
||||
args+=("--initialize-insecure")
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
|
|||
|
||||
|
||||
* [`8.0`, `8.0-debian-10`, `8.0.25`, `8.0.25-debian-10-r12`, `latest` (8.0/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-mysql/blob/8.0.25-debian-10-r12/8.0/debian-10/Dockerfile)
|
||||
* [`5.7`, `5.7-debian-10`, `5.7.34`, `5.7.34-debian-10-r29` (5.7/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-mysql/blob/5.7.34-debian-10-r29/5.7/debian-10/Dockerfile)
|
||||
* [`5.7`, `5.7-debian-10`, `5.7.34`, `5.7.34-debian-10-r30` (5.7/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-mysql/blob/5.7.34-debian-10-r30/5.7/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/mysql GitHub repo](https://github.com/bitnami/bitnami-docker-mysql).
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue