From 640172ca96be29c9fec6f3270a519262bd75e85f Mon Sep 17 00:00:00 2001 From: dado Date: Sun, 2 Nov 2025 18:10:21 +0100 Subject: [PATCH] added openwebui --- etc/caddy/Caddyfile | 8 ++++++++ openwebui/docker-compose.yml | 13 +++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 openwebui/docker-compose.yml diff --git a/etc/caddy/Caddyfile b/etc/caddy/Caddyfile index 586857a..6672694 100644 --- a/etc/caddy/Caddyfile +++ b/etc/caddy/Caddyfile @@ -186,6 +186,14 @@ https://linkding.novemila.org { reverse_proxy localhost:3021 } +# OPENWEBUI + +https://ai.novemila.org { + import common + encode gzip zstd + reverse_proxy localhost:3022 +} + # MOLLY https://molly.novemila.org { diff --git a/openwebui/docker-compose.yml b/openwebui/docker-compose.yml new file mode 100644 index 0000000..32c8b19 --- /dev/null +++ b/openwebui/docker-compose.yml @@ -0,0 +1,13 @@ +# https://docs.openwebui.com/getting-started/quick-start/ +# https://brave.com/search/api/guides/use-with-open-webui/ +# https://huggingface.co/ + +services: + openwebui: + image: ghcr.io/open-webui/open-webui:main + ports: + - 127.0.0.1:3022:8080 + volumes: + - open-webui:/app/backend/data +volumes: + open-webui: