From 190b64c7c94b52ba53995804aad0d8b96a3b9a30 Mon Sep 17 00:00:00 2001 From: Till JS Date: Sat, 21 Mar 2026 21:18:12 +0100 Subject: [PATCH] =?UTF-8?q?fix(glitchtip):=20use=20python3=20for=20health?= =?UTF-8?q?=20check=20=E2=80=94=20wget=20not=20in=20image?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The GlitchTip Docker image doesn't include wget or curl, causing 692+ consecutive health check failures. Switch to python3 urllib which is available in the image. Co-Authored-By: Claude Opus 4.6 (1M context) --- docker-compose.macmini.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.macmini.yml b/docker-compose.macmini.yml index eb95a572f..d38e25b91 100644 --- a/docker-compose.macmini.yml +++ b/docker-compose.macmini.yml @@ -2055,7 +2055,7 @@ services: redis: condition: service_healthy healthcheck: - test: ["CMD", "wget", "-q", "--spider", "http://localhost:8020/_health/"] + test: ["CMD", "python3", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:8020/_health/')"] interval: 30s timeout: 10s retries: 3