From f337851bb987f729d6687b9a6cf7a1196c0bd568 Mon Sep 17 00:00:00 2001 From: Thomas Reitz Date: Sun, 8 Mar 2026 18:07:06 +0100 Subject: [PATCH] fix: enable Traefik ping for healthcheck The `traefik healthcheck` command requires `--ping=true` to be set. Without it, the healthcheck always fails even though Traefik works fine. Co-Authored-By: Claude Opus 4.6 --- docker-compose.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index c26f3f5..c76ea62 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -58,6 +58,8 @@ services: - "--log.level=INFO" - "--accesslog=true" - "--accesslog.format=json" + # Ping (fuer Healthcheck) + - "--ping=true" # Metrics fuer Prometheus - "--metrics.prometheus=true" - "--metrics.prometheus.entryPoint=metrics"