diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..a7c4794 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,14 @@ +services: + open-webui: + image: ghcr.io/open-webui/open-webui:main + container_name: open-webui + restart: unless-stopped + environment: + - OLLAMA_BASE_URL=http://127.0.0.1:11434 + volumes: + - open-webui:/app/backend/data + network_mode: host + +volumes: + open-webui: + external: false