From 226a801c8bc0f12b0c3f26f656b82d5ca1ad26a3 Mon Sep 17 00:00:00 2001 From: hhofmann Date: Tue, 14 Apr 2026 09:36:13 +0200 Subject: [PATCH] fixed health check for qdrant --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index d0001b0..222f6d0 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -35,7 +35,7 @@ services: volumes: - qdrant_storage:/qdrant/storage healthcheck: - test: ["CMD-SHELL", "wget -q --spider http://localhost:6333/ || exit 1"] + test: ["CMD", "curl", "-f", "http://localhost:6333/"] interval: 10s timeout: 5s retries: 3