forked from open-webui/open-webui
Adding Makefile and LLM update script
This commit is contained in:
parent
7b27a96e14
commit
5adff7767f
2 changed files with 32 additions and 0 deletions
22
Makefile
Normal file
22
Makefile
Normal file
|
@ -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
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue