From 17c1705fe7ea585a995fc3a2282d7323c3cd2e5a Mon Sep 17 00:00:00 2001 From: benbrummer Date: Mon, 1 Sep 2025 21:34:09 +0200 Subject: [PATCH] Workaround: Disable SSL for mariadb-client for compatibility with MySQL Signed-off-by: benbrummer --- debian/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/debian/Dockerfile b/debian/Dockerfile index b0bf333..e1eb1e9 100644 --- a/debian/Dockerfile +++ b/debian/Dockerfile @@ -72,6 +72,9 @@ RUN ln -s "${PHP_INI_DIR}/php.ini-production" "${PHP_INI_DIR}/php.ini" COPY php/php.ini /usr/local/etc/php/conf.d/invoiceninja.ini +# Workaround: Disable SSL for mariadb-client for compatibility with MySQL +RUN echo "skip-ssl = true" >> /etc/mysql/mariadb.conf.d/50-client.cnf + # Create directory for artisan tinker (init.sh) RUN mkdir /config/psysh \ && chown ${user}: /config/psysh