Skip to content

Commit

Permalink
Adding Makefile and LLM update script
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrice-Gaudicheau committed Feb 22, 2024
1 parent 7b27a96 commit 5adff77
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Makefile
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

10 changes: 10 additions & 0 deletions update_llm.sh
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

0 comments on commit 5adff77

Please sign in to comment.