From 586b87ba4435a90f931c1ecd65a6834c15e00b64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Houpert?= <10154151+lhoupert@users.noreply.github.com> Date: Wed, 21 Feb 2024 12:29:12 +0000 Subject: [PATCH] Update docker-compose.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Loïc Houpert <10154151+lhoupert@users.noreply.github.com> --- .../with-nginx-proxy/mariadb/fpm/docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.examples/docker-compose/with-nginx-proxy/mariadb/fpm/docker-compose.yml b/.examples/docker-compose/with-nginx-proxy/mariadb/fpm/docker-compose.yml index 94196e9f..614ef380 100644 --- a/.examples/docker-compose/with-nginx-proxy/mariadb/fpm/docker-compose.yml +++ b/.examples/docker-compose/with-nginx-proxy/mariadb/fpm/docker-compose.yml @@ -2,8 +2,8 @@ version: '3' services: db: - image: mariadb:10.6 - command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW + image: mariadb:11.3.2 + command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW --character-set-server=utf8 restart: always volumes: - db:/var/lib/mysql:Z