From 414dc9a23a19dab581a5734a87d09235972b0e85 Mon Sep 17 00:00:00 2001 From: Ernesto Baschny Date: Fri, 17 Oct 2025 15:44:55 +0200 Subject: [PATCH] Fix mysql client requiring ssl Newer mariadb clients have --ssl by default. Our server is not running on ssl. See 'https://mariadb.com/docs/server/clients-and-utilities/mariadb-client/mariadb-command-line-client#-ssl' --- files/ssh/entrypoint.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/files/ssh/entrypoint.sh b/files/ssh/entrypoint.sh index 4e7b3ef..5965a02 100755 --- a/files/ssh/entrypoint.sh +++ b/files/ssh/entrypoint.sh @@ -107,6 +107,8 @@ host=${DB_HOST} port=${DB_PORT} user=${DB_USER} password=${DB_PASS} +skip-ssl=true + EOF if ! ct --version | grep 2.5.4 >/dev/null