From 5e2df177c2ebf45fe5ce74b7ea386a70f0108aba Mon Sep 17 00:00:00 2001 From: "Luma (Enclave AI)" Date: Mon, 11 May 2026 20:11:41 +0000 Subject: [PATCH] fix(docker): use curl instead of wget for ollama healthcheck ollama/ollama:latest does not ship wget. The service starts and listens on :11434 correctly but the healthcheck always fails, blocking all dependent services (olla, retriever, router) from starting. 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..53f981d 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", "curl", "-sf", "http://localhost:11434/"] interval: 15s timeout: 10s retries: 5