diff --git a/script/docker/compose.yaml b/script/docker/compose.yaml index e432fda..3410cc5 100644 --- a/script/docker/compose.yaml +++ b/script/docker/compose.yaml @@ -27,7 +27,7 @@ services: expose: - 11434 healthcheck: - test: "apt update && apt install curl -y && curl -f http://localhost:11434/api/tags | grep -q llama3.2:3b" + test: "apt update && apt install curl -y && curl -f http://localhost:11434/api/tags | grep -q llama3.3:3b" interval: 30s timeout: 10s retries: 20 diff --git a/script/docker/ollama-entrypoint.sh b/script/docker/ollama-entrypoint.sh index ced1718..18e1550 100644 --- a/script/docker/ollama-entrypoint.sh +++ b/script/docker/ollama-entrypoint.sh @@ -8,8 +8,8 @@ pid=$! # Pause for Ollama to start. sleep 5 -echo "🔴 Retrieve llama3.2:3b model..." -ollama pull llama3.2:3b +echo "🔴 Retrieve llama3.3:3b model..." +ollama pull llama3.3:3b echo "🟢 Done!" # Wait for Ollama process to finish.