fix: use python for chromadb healthcheck

This commit is contained in:
Ray Andrew 2026-02-13 01:21:12 -06:00
parent 4055b0f047
commit cd334c955b
Signed by: rayandrew
SSH key fingerprint: SHA256:EUCV+qCSqkap8rR+p+zGjxHfKI06G0GJKgo1DIOniQY

View file

@ -38,10 +38,11 @@ services:
- ANONYMIZED_TELEMETRY=FALSE - ANONYMIZED_TELEMETRY=FALSE
restart: unless-stopped restart: unless-stopped
healthcheck: 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 interval: 15s
timeout: 5s timeout: 5s
retries: 3 retries: 3
start_period: 10s
# ── LLM API proxy ── # ── LLM API proxy ──
litellm: litellm: