From cb14aacc6b57a010f77d5b6fc7129211550ba37f Mon Sep 17 00:00:00 2001 From: hyungi Date: Wed, 25 Feb 2026 15:10:34 +0900 Subject: [PATCH] Initial commit: Open WebUI docker-compose with Ollama integration Co-Authored-By: Claude Opus 4.6 --- .gitignore | 1 + docker-compose.yml | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 .gitignore create mode 100644 docker-compose.yml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e43b0f9 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.DS_Store diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..c286449 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,17 @@ +services: + open-webui: + image: ghcr.io/open-webui/open-webui:main + container_name: open-webui + restart: unless-stopped + ports: + - "3080:8080" + volumes: + - open-webui-data:/app/backend/data + environment: + - OLLAMA_BASE_URL=http://host.docker.internal:11434 + - WEBUI_AUTH=true + extra_hosts: + - "host.docker.internal:host-gateway" + +volumes: + open-webui-data: