From 2722f920198b908101482638f7b7a5c2ca57436a Mon Sep 17 00:00:00 2001 From: Joseph Kisler Date: Wed, 17 Dec 2025 13:50:31 +0100 Subject: [PATCH] Fix: Healthcheck auf / statt /healthcheck MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit /healthcheck existiert nicht in WordPress 🤖 Generated with Claude Code --- docker-compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index 4e0fb58..5601ac0 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -39,7 +39,7 @@ services: - internal - coolify healthcheck: - test: ["CMD", "curl", "-f", "http://localhost:8080/healthcheck"] + test: ["CMD", "curl", "-f", "http://localhost:8080/"] interval: 30s timeout: 10s start_period: 60s