From ea806971c5a926fdf545eb23d91a682b8e335ffe Mon Sep 17 00:00:00 2001 From: "R. Gierwialo" Date: Fri, 17 Oct 2025 20:48:45 +0000 Subject: [PATCH] Tests with OpenWebUI --- selfhosted_ai/docker-compose.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 selfhosted_ai/docker-compose.yaml diff --git a/selfhosted_ai/docker-compose.yaml b/selfhosted_ai/docker-compose.yaml new file mode 100644 index 0000000..343b005 --- /dev/null +++ b/selfhosted_ai/docker-compose.yaml @@ -0,0 +1,17 @@ +services: + openwebui: + image: ghcr.io/open-webui/open-webui:v0.6.34 + container_name: self_ai_web + networks: + internal_traffic: + ipv4_address: 192.168.8.2 + volumes: + - data_openwebui:/app/backend/data + +volumes: + data_openwebui: + external: true +networks: + internal_traffic: + external: true +