From cbdbf7497b9b67e705a364a05fe2defbc6b82abb Mon Sep 17 00:00:00 2001 From: Vincent Mahnke Date: Sun, 12 Oct 2025 00:01:28 +0200 Subject: [PATCH] fix: Changes healthcheck to MariaDB compatible syntax --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index a415a74..d1ccc8a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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