From a016171573f9da5d09c1030776d4a9050e55569b Mon Sep 17 00:00:00 2001 From: Patrice-Gaudicheau Date: Sat, 24 Feb 2024 07:51:27 +0100 Subject: [PATCH] fix: update Makefile and rename script for open-webui integration --- Makefile | 5 +++-- update_llm.sh => update_ollama_models.sh | 0 2 files changed, 3 insertions(+), 2 deletions(-) rename update_llm.sh => update_ollama_models.sh (100%) diff --git a/Makefile b/Makefile index 49736e60..265a608a 100644 --- a/Makefile +++ b/Makefile @@ -12,11 +12,12 @@ stop: update: # Calls the LLM update script - @./update_llm.sh + chmod +x update_ollama_models.sh + @./update_ollama_models.sh @git pull @docker-compose down # Make sure the ollama-webui container is stopped before rebuilding - @docker stop ollama-webui || true + @docker stop open-webui || true @docker-compose up --build -d @docker-compose start diff --git a/update_llm.sh b/update_ollama_models.sh similarity index 100% rename from update_llm.sh rename to update_ollama_models.sh