diff --git a/wordpress/compose.yaml b/wordpress/compose.yaml index 7b7f71f..915b5d8 100644 --- a/wordpress/compose.yaml +++ b/wordpress/compose.yaml @@ -11,11 +11,11 @@ services: volumes: # MySQL data → host - /srv/appdata/wordpress/db:/var/lib/mysql - healthcheck: - test: ["CMD", "mysqladmin", "ping", "-h", "localhost"] - interval: 10s - timeout: 5s - retries: 5 + # healthcheck: + # test: ["CMD", "mysqladmin", "ping", "-h", "localhost"] + # interval: 10s + # timeout: 5s + # retries: 5 security_opt: - no-new-privileges:true logging: @@ -30,7 +30,8 @@ services: restart: unless-stopped depends_on: db: - condition: service_healthy + #condition: service_healthy + condition: service_started environment: - WORDPRESS_DB_HOST=db:3306 - WORDPRESS_DB_USER=${MYSQL_USER}