open-webui/run.sh

5 lines
238 B
Bash
Raw Normal View History

2023-10-08 22:38:42 +00:00
docker stop ollama-webui || true
docker rm ollama-webui || true
docker build -t ollama-webui .
2023-11-15 00:28:51 +00:00
docker run -d -p 3000:8080 --add-host=host.docker.internal:host-gateway --name ollama-webui --restart always ollama-webui
2023-10-08 22:38:42 +00:00
docker image prune -f