From fce090ab61c41884fd37249d5c19b9629b0670c0 Mon Sep 17 00:00:00 2001 From: stealthinnovative Date: Tue, 13 Jan 2026 08:52:10 -1000 Subject: [PATCH] Update docker-compose.yml Updated DB service to mariadb from mysql, updated PMA_Host to match. Updated mariadb image to mariadb:11.8 for current LTS version. --- docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 7a3473d..4ffbb28 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,6 @@ services: - mysql: - image: mariadb:11.4 + mariadb: + image: mariadb:11.8 logging: driver: none command: ["--max-allowed-packet=512M"] @@ -43,7 +43,7 @@ services: ports: - 8080:80 environment: - PMA_HOST: mysql + PMA_HOST: mariadb restart: always networks: - default