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-10-18 01:48:19 +00:00
docker run -d -p 3000:3000 --name ollama-webui --restart always ollama-webui --add-host=host.docker.internal:host-gateway
2023-10-08 22:38:42 +00:00
docker image prune -f