From 82f1dcf4f352862b4dafa4df4379bde69cc68806 Mon Sep 17 00:00:00 2001 From: adminSimon Date: Sun, 12 Apr 2026 18:52:02 +0200 Subject: [PATCH] =?UTF-8?q?docker-compose.yaml=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 docker-compose.yaml diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..c8228e8 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,11 @@ +services: + open-webui: + image: ghcr.io/open-webui/open-webui:main + container_name: open-webui + ports: + - "3000:8080" + volumes: + - ./data:/app/backend/data + environment: + - "OLLAMA_BASE_URL=http://192.168.6.254:11434" + restart: unless-stopped