From ff7205e9cd4e7e52626b3385e8f677c1740b15fe Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Sun, 10 Aug 2025 15:57:14 -0400 Subject: [PATCH] Changing Ollama healthcheck and updating Ollama image tag. --- docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 5ed7c230..40cbcc7a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4167,12 +4167,12 @@ services: ollama: container_name: ollama healthcheck: - test: ["CMD", "curl", "--fail", "http://localhost:11434/api/tags", "||", "exit 1"] + test: ollama list || exit 1 interval: 30s timeout: 10s retries: 3 start_period: 5s - image: ollama/ollama + image: ollama/ollama:latest ports: - 11434:11434 restart: unless-stopped