open web ui

This commit is contained in:
server 2024-08-14 04:51:20 +00:00
parent 5dcb90377d
commit 4d9d6830d4
3 changed files with 18 additions and 0 deletions

1
.gitignore vendored
View File

@ -5,3 +5,4 @@ Pacoloco/cache/
qBittorrent/config/ qBittorrent/config/
qBittorrent/qbit-config/ qBittorrent/qbit-config/
/OpenWebUI/open-webui

4
OpenWebUI/README.md Normal file
View File

@ -0,0 +1,4 @@
# Open Web UI
Currently this config expects ollama to be running on a different device, the compose.yml has the ip for you to change in it.

13
OpenWebUI/compose.yml Normal file
View File

@ -0,0 +1,13 @@
services:
open-webui:
image: ghcr.io/open-webui/open-webui:main
restart: unless-stopped
environment:
- WEBUI_AUTH=False
- OLLAMA_BASE_URL=http://10.0.0.21:11434
ports:
- 4000:8080
volumes:
- './open-webui:/app/backend/data'