2024-04-19 19:30:25 +02:00
|
|
|
|
|
|
|
ifneq ($(shell which docker-compose 2>/dev/null),)
|
|
|
|
DOCKER_COMPOSE := docker-compose
|
|
|
|
else
|
|
|
|
DOCKER_COMPOSE := docker compose
|
|
|
|
endif
|
|
|
|
|
2024-02-22 22:00:59 +01:00
|
|
|
install:
|
2024-04-19 19:30:25 +02:00
|
|
|
$(DOCKER_COMPOSE) up -d
|
2024-02-22 22:00:59 +01:00
|
|
|
|
|
|
|
remove:
|
2024-02-24 09:02:18 +01:00
|
|
|
@chmod +x confirm_remove.sh
|
|
|
|
@./confirm_remove.sh
|
|
|
|
|
2024-02-22 22:00:59 +01:00
|
|
|
start:
|
2024-04-19 19:30:25 +02:00
|
|
|
$(DOCKER_COMPOSE) start
|
2024-03-31 22:50:17 +02:00
|
|
|
startAndBuild:
|
2024-04-19 19:30:25 +02:00
|
|
|
$(DOCKER_COMPOSE) up -d --build
|
2024-02-22 22:00:59 +01:00
|
|
|
|
|
|
|
stop:
|
2024-04-19 19:30:25 +02:00
|
|
|
$(DOCKER_COMPOSE) stop
|
2024-02-22 22:00:59 +01:00
|
|
|
|
|
|
|
update:
|
2024-02-23 15:53:47 +01:00
|
|
|
# Calls the LLM update script
|
2024-02-24 07:51:27 +01:00
|
|
|
chmod +x update_ollama_models.sh
|
|
|
|
@./update_ollama_models.sh
|
2024-02-22 22:00:59 +01:00
|
|
|
@git pull
|
2024-04-19 19:30:25 +02:00
|
|
|
$(DOCKER_COMPOSE) down
|
2024-02-23 15:53:47 +01:00
|
|
|
# Make sure the ollama-webui container is stopped before rebuilding
|
2024-02-24 07:51:27 +01:00
|
|
|
@docker stop open-webui || true
|
2024-04-19 19:30:25 +02:00
|
|
|
$(DOCKER_COMPOSE) up --build -d
|
|
|
|
$(DOCKER_COMPOSE) start
|
2024-02-22 22:00:59 +01:00
|
|
|
|