From 7c79574a25c66570b1690fbe729fcbd74c742ac7 Mon Sep 17 00:00:00 2001 From: jlightner Date: Mon, 30 Mar 2026 01:17:06 +0000 Subject: [PATCH] fix: Ollama healthcheck uses 'ollama list' instead of curl (not in image) --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 3be778b..2e84fac 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -70,7 +70,7 @@ services: networks: - chrysopedia healthcheck: - test: ["CMD-SHELL", "curl -sf http://localhost:11434/api/tags || exit 1"] + test: ["CMD", "ollama", "list"] interval: 15s timeout: 5s retries: 5