From cd334c955bd4a59648b4c4a7ab9715685e5bece6 Mon Sep 17 00:00:00 2001 From: Ray Andrew Date: Fri, 13 Feb 2026 01:21:12 -0600 Subject: [PATCH] fix: use python for chromadb healthcheck --- docker-compose.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index b2d7915..29b93df 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -38,10 +38,11 @@ services: - ANONYMIZED_TELEMETRY=FALSE restart: unless-stopped healthcheck: - test: ["CMD", "curl", "-f", "http://localhost:8000/api/v1/heartbeat"] + test: ["CMD", "python", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:8000/api/v1/heartbeat')"] interval: 15s timeout: 5s retries: 3 + start_period: 10s # ── LLM API proxy ── litellm: