Fix docker compose healthcheck

This commit is contained in:
ben
2025-09-23 17:16:36 +02:00
parent 733c67156b
commit e379b8fe51

View File

@@ -115,7 +115,7 @@ services:
- "127.0.0.1:8000:8000" - "127.0.0.1:8000:8000"
- "127.0.0.1:8001:8001" - "127.0.0.1:8001:8001"
healthcheck: healthcheck:
test: curl --fail http://localhost:11434 || exit 1 test: "curl --fail -H \"Authorization: Bearer ${LLM_API_KEY}\" http://localhost:11434 || exit 1"
interval: 10s interval: 10s
retries: 5 retries: 5
start_period: 10s start_period: 10s