fix(infra): revert qdrant healthcheck to bash socket check due to missing curl in image

This commit is contained in:
2026-06-01 19:33:58 +02:00
parent 00004ce433
commit 65d292bf2a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -59,7 +59,7 @@ services:
volumes:
- qdrant_test_data:/qdrant/storage
healthcheck:
test: ["CMD-SHELL", "curl -sf http://localhost:6333/healthz || exit 1"]
test: ["CMD-SHELL", "bash -c 'exec 3<>/dev/tcp/127.0.0.1/6333'"]
interval: 5s
timeout: 5s
retries: 5