commit cb14aacc6b57a010f77d5b6fc7129211550ba37f Author: hyungi Date: Wed Feb 25 15:10:34 2026 +0900 Initial commit: Open WebUI docker-compose with Ollama integration Co-Authored-By: Claude Opus 4.6 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: