Makefile 376 B

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