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.
This commit is contained in:
stealthinnovative
2026-01-13 08:52:10 -10:00
committed by GitHub
parent 4d6a31859b
commit fce090ab61
+3 -3
View File
@@ -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