From 427900707f5e1575c32d5efe2680870d12b2a33c Mon Sep 17 00:00:00 2001 From: Lucilio Correia Date: Tue, 22 Oct 2024 17:09:52 -0300 Subject: [PATCH] fix: install mariadb-connector-c for using new passwords --- scripts/install-mysql-tools.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/install-mysql-tools.sh b/scripts/install-mysql-tools.sh index 25b6090..d9a5945 100644 --- a/scripts/install-mysql-tools.sh +++ b/scripts/install-mysql-tools.sh @@ -3,6 +3,8 @@ # # MySQL install tools # Install mysql and mysqldump to container +# - mysql-client (mariadb tools) +# - mariadb-connector-c (fills the gap with new mysql sha password protocol) # -apk update && apk add mysql-client; \ No newline at end of file +apk update && apk add mysql-client mariadb-connector-c; \ No newline at end of file