From 16dd8064d4e79758bd53b649419d0b56db4a971e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 9 Nov 2025 18:13:26 +0100 Subject: [PATCH] fix: disable LiteLLM healthcheck due to missing curl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Healthcheck was failing because curl is not installed in the LiteLLM container, causing Traefik to mark it as unhealthy and not route traffic. Disabled healthcheck as Traefik doesn't require it for routing. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- ai/compose.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/ai/compose.yaml b/ai/compose.yaml index 779f908..b79e457 100644 --- a/ai/compose.yaml +++ b/ai/compose.yaml @@ -102,11 +102,7 @@ services: networks: - compose_network healthcheck: - test: ["CMD-SHELL", "curl -f http://localhost:4000/health || exit 1"] - interval: 30s - timeout: 10s - retries: 3 - start_period: 20s + disable: true labels: - 'traefik.enable=${AI_TRAEFIK_ENABLED}' # HTTP to HTTPS redirect