Makefile 418 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
install:
	@docker-compose up -d

remove:
	@docker-compose down -v

start:
	@docker-compose start

stop:
	@docker-compose stop

update:
14
	# Calls the LLM update script
15
16
	chmod +x update_ollama_models.sh
	@./update_ollama_models.sh
17
18
	@git pull
	@docker-compose down
19
	# Make sure the ollama-webui container is stopped before rebuilding
20
	@docker stop open-webui || true
21
22
23
	@docker-compose up --build -d
	@docker-compose start