fix(infra): use bash socket healthcheck for qdrant in staging and test #68

Merged
mjasin merged 1 commits from infra/stage-deploy into develop 2026-06-01 17:36:04 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 65d292bf2a - Show all commits
+1 -1
View File
@@ -62,7 +62,7 @@ services:
volumes:
- qdrant_stage_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
+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