From 5e98abcb9a78ceb476d37326a062e43e24269378 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Han?= Date: Thu, 24 Jul 2025 21:07:13 +0200 Subject: [PATCH] chore: install script should use starter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Our demo installation script should pull the starter image. Ollama is not being updated anymore as a distribution. Signed-off-by: Sébastien Han --- scripts/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index 9cd4ea817..5dc74fae1 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -15,7 +15,7 @@ set -Eeuo pipefail PORT=8321 OLLAMA_PORT=11434 MODEL_ALIAS="llama3.2:3b" -SERVER_IMAGE="docker.io/llamastack/distribution-ollama:latest" +SERVER_IMAGE="docker.io/llamastack/distribution-starter:latest" WAIT_TIMEOUT=30 TEMP_LOG="" @@ -224,7 +224,7 @@ cmd=( run -d "${PLATFORM_OPTS[@]}" --name llama-stack \ "${SERVER_IMAGE}" --port "${PORT}" \ --env OLLAMA_INFERENCE_MODEL="${MODEL_ALIAS}" \ --env OLLAMA_URL="http://ollama-server:${OLLAMA_PORT}" \ - --env ENABLE_OLLAMA=ollama --env OPENAI_API_KEY=foo) + --env ENABLE_OLLAMA=ollama) log "🦙 Starting Llama Stack..." if ! execute_with_log $ENGINE "${cmd[@]}"; then