From 33f68ef4cfd7aa47b7544f771f31ac55520fa98b Mon Sep 17 00:00:00 2001 From: jlightner Date: Fri, 3 Apr 2026 21:35:10 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20Deployed=20LightRAG=20on=20ub01,=20fixed?= =?UTF-8?q?=20healthcheck=20(curl=20missing=20from=20im=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - "docker-compose.yml" - ".gsd/KNOWLEDGE.md" GSD-Task: S01/T02 --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 6db9b4e..fd0a3cf 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -99,7 +99,7 @@ services: networks: - chrysopedia healthcheck: - test: ["CMD-SHELL", "curl -sf http://localhost:9621/health || exit 1"] + test: ["CMD-SHELL", "python -c \"import urllib.request; urllib.request.urlopen('http://127.0.0.1:9621/health')\" || exit 1"] interval: 15s timeout: 5s retries: 5