From 66e0d510bca1733a0656b2d78aa10c426248764c Mon Sep 17 00:00:00 2001 From: yc chien <18157220+shiresn@users.noreply.github.com> Date: Wed, 15 May 2024 10:09:20 +0800 Subject: [PATCH] Update docker-compose.yml according to mysql 8.4 release note, The deprecated mysql_native_password authentication plugin is now disabled by default. It can be enabled by starting MySQL with the new --mysql-native-password=ON server option. --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 028a55f32..7313f42fd 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -76,7 +76,7 @@ services: mysql: image: mysql:8 - command: --default-authentication-plugin=mysql_native_password + command: --mysql-native-password=ON environment: MYSQL_ROOT_PASSWORD: example MYSQL_DATABASE: promgen