fix: Changes healthcheck to MariaDB compatible syntax
All checks were successful
Build Hello World Image / build (push) Successful in 21s
Build Hello World Image / build (pull_request) Successful in 22s

This commit is contained in:
Vincent Mahnke 2025-10-12 00:01:28 +02:00 committed by Vincent Mahnke
commit cbdbf7497b

View file

@ -10,7 +10,7 @@ services:
ports:
- "3306:3306"
healthcheck:
test: ["CMD", "mysqladmin", "ping", "-h", "localhost"]
test: ["CMD", "mariadb-admin", "ping", "-h", "localhost", "-uroot", "-prootpassword"]
interval: 10s
timeout: 5s
retries: 5