Makefile 445 Bytes
Newer Older
1
2
3
4
install:
	@docker-compose up -d

remove:
5
6
7
	@chmod +x confirm_remove.sh
	@./confirm_remove.sh

8
9
10
11
12
13
14
15

start:
	@docker-compose start

stop:
	@docker-compose stop

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