Makefile 445 B

12345678910111213141516171819202122232425
  1. install:
  2. @docker-compose up -d
  3. remove:
  4. @chmod +x confirm_remove.sh
  5. @./confirm_remove.sh
  6. start:
  7. @docker-compose start
  8. stop:
  9. @docker-compose stop
  10. update:
  11. # Calls the LLM update script
  12. chmod +x update_ollama_models.sh
  13. @./update_ollama_models.sh
  14. @git pull
  15. @docker-compose down
  16. # Make sure the ollama-webui container is stopped before rebuilding
  17. @docker stop open-webui || true
  18. @docker-compose up --build -d
  19. @docker-compose start