From 4d9d6830d4293861be01aca71ea5a5f06760f308 Mon Sep 17 00:00:00 2001 From: server Date: Wed, 14 Aug 2024 04:51:20 +0000 Subject: [PATCH] open web ui --- .gitignore | 1 + OpenWebUI/README.md | 4 ++++ OpenWebUI/compose.yml | 13 +++++++++++++ 3 files changed, 18 insertions(+) create mode 100644 OpenWebUI/README.md create mode 100644 OpenWebUI/compose.yml 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' + +