Files
open-webui/run.sh

7 lines
285 B
Bash
Raw Normal View History

2024-01-09 13:21:36 +06:00
#!/bin/bash
2024-01-07 20:50:09 -08:00
docker build -t ollama-webui .
2023-10-08 15:38:42 -07:00
docker stop ollama-webui || true
docker rm ollama-webui || true
docker run -d -p 3000:8080 --add-host=host.docker.internal:host-gateway -v ollama-webui:/app/backend/data --name ollama-webui --restart always ollama-webui
2023-10-08 15:38:42 -07:00
docker image prune -f