From 9ea15dcd027b0cb3961875ea986f41d3280c039d Mon Sep 17 00:00:00 2001 From: crowetic Date: Mon, 19 May 2025 17:47:23 -0700 Subject: [PATCH] removed unnecessary additional docker run command --- setup-ai-stack.sh | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/setup-ai-stack.sh b/setup-ai-stack.sh index 5c5823d..f995c81 100644 --- a/setup-ai-stack.sh +++ b/setup-ai-stack.sh @@ -553,21 +553,6 @@ if [[ "$1" != "--update" ]]; then fi -docker run -d \ - --name localai \ - --gpus all \ - --network ai-stack-net \ - -p 8080:8080 \ - -v ~/ai-stack/localai/models:/models \ - -v ~/ai-stack/localai/config:/config \ - -e ENABLE_BACKENDS=llama-cuda,whispercpp,stablediffusion,ollama \ - -e INCLUDE_DEFAULT_MODELS=true \ - -e AUTOLOAD_MODELS=true \ - -e MODEL_PATH=/models \ - --restart unless-stopped \ - localai:custom - - echo "✅ AI stack setup complete."