From dc15f1637687daf88ac8a537091ca9cd16ab75d1 Mon Sep 17 00:00:00 2001 From: "Luma (Enclave AI)" Date: Mon, 11 May 2026 20:12:23 +0000 Subject: [PATCH] fix: use ollama binary for healthcheck (wget/curl not in image) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ollama/ollama:latest has neither wget nor curl. Use the ollama CLI directly — it's always available in the image. Co-Authored-By: Claude Sonnet 4.6 --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 1c077bb..08b647f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -53,7 +53,7 @@ services: shm_size: '${OLLAMA_SHM_SIZE:-2gb}' mem_limit: '${OLLAMA_MEM_LIMIT:-8g}' healthcheck: - test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:11434/"] + test: ["CMD", "ollama", "list"] interval: 15s timeout: 10s retries: 5