open-webui/run.sh

5 lines
193 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 .
docker run -d -p 3000:8080 --name ollama-webui --restart always ollama-webui
2023-10-08 22:38:42 +00:00
docker image prune -f