forked from open-webui/open-webui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding Makefile and LLM update script
- Loading branch information
1 parent
7b27a96
commit 5adff77
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
install: | ||
@docker-compose up -d | ||
|
||
remove: | ||
@docker-compose down -v | ||
|
||
start: | ||
@docker-compose start | ||
|
||
stop: | ||
@docker-compose stop | ||
|
||
update: | ||
# Appelle le script de mise à jour des LLM | ||
@./update_llm.sh | ||
@git pull | ||
@docker-compose down | ||
# Assure-toi que le conteneur ollama-webui est arrêté avant de reconstruire | ||
@docker stop ollama-webui || true | ||
@docker-compose up --build -d | ||
@docker-compose start | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
# update_llm.sh | ||
|
||
# Récupère la liste des LLM installées dans le container Docker | ||
llm_list=$(docker exec ollama ollama list | tail -n +2 | awk '{print $1}') | ||
|
||
# Boucle sur chaque LLM pour la mettre à jour | ||
for llm in $llm_list; do | ||
docker exec ollama ollama pull $llm | ||
done |