From 6960a0c2369a54cfdb25c3b4c9c592c408e46497 Mon Sep 17 00:00:00 2001 From: Jose Lago Date: Mon, 13 Jul 2026 13:08:10 +0200 Subject: [PATCH] Make healthcheck ignore proxy env --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 84d14e4..78d78f4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -26,7 +26,7 @@ services: # Docker healthcheck (uses the in-container aiohttp server) healthcheck: test: ["CMD", "python", "-c", - "import httpx,os; r=httpx.get(f'http://localhost:{os.getenv(\"HEALTH_PORT\",\"8765\")}/health'); r.raise_for_status()"] + "import httpx,os; r=httpx.get(f'http://localhost:{os.getenv(\"HEALTH_PORT\",\"8765\")}/health', trust_env=False); r.raise_for_status()"] interval: 15s timeout: 5s retries: 3