diff --git a/.gitignore b/.gitignore index 0c93b37..abf2f01 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ Pacoloco/cache/ qBittorrent/config/ qBittorrent/qbit-config/ +/OpenWebUI/open-webui diff --git a/OpenWebUI/README.md b/OpenWebUI/README.md new file mode 100644 index 0000000..52e116f --- /dev/null +++ b/OpenWebUI/README.md @@ -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. diff --git a/OpenWebUI/compose.yml b/OpenWebUI/compose.yml new file mode 100644 index 0000000..4032874 --- /dev/null +++ b/OpenWebUI/compose.yml @@ -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' + +