docker-compose.yml
changeset 23 417f20492bf7
parent 21 48c4eec2b7e6
--- a/docker-compose.yml	Fri Sep 05 18:52:52 2025 +0200
+++ b/docker-compose.yml	Mon Sep 08 19:44:41 2025 +0200
@@ -2,7 +2,7 @@
 services:
   db:
     # We use a mariadb image which supports both amd64 & arm64 architecture
-    image: mariadb:10.6
+    image: mariadb:11
     # If you really want to use MySQL, uncomment the following line
     #image: mysql:8.0.27
     command: '--default-authentication-plugin=mysql_native_password'
@@ -10,6 +10,7 @@
       - db_data:/var/lib/mysql
     restart: unless-stopped
     environment:
+      - MARIADB_AUTO_UPGRADE=1
       - MYSQL_ROOT_PASSWORD=iri
       - MYSQL_DATABASE=wordpress_ec
       - MYSQL_USER=iri
@@ -28,6 +29,7 @@
       - WORDPRESS_DB_USER=iri
       - WORDPRESS_DB_PASSWORD=iri
       - WORDPRESS_DB_NAME=wordpress_ec
+      - WORDPRESS_DEBUG=1
 
   wpcli:
     image: wordpress:cli