From 7256fe76679089bf23af14cb1747ebfd609b1b6e Mon Sep 17 00:00:00 2001 From: jlightner Date: Mon, 30 Mar 2026 01:20:14 +0000 Subject: [PATCH] fix: Qdrant healthcheck uses bash /dev/tcp (no wget/curl in image) --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 2e84fac..133c555 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -53,7 +53,7 @@ services: networks: - chrysopedia healthcheck: - test: ["CMD-SHELL", "wget -qO- http://localhost:6333/healthz || exit 1"] + test: ["CMD-SHELL", "bash -c 'echo > /dev/tcp/localhost/6333'"] interval: 15s timeout: 5s retries: 5