diff --git a/open-webui/compose.yaml b/open-webui/compose.yaml new file mode 100644 index 0000000..d810297 --- /dev/null +++ b/open-webui/compose.yaml @@ -0,0 +1,19 @@ +services: + open-webui: + container_name: open-webui + image: ghcr.io/open-webui/open-webui:v0.8.8-ollama@sha256:781938633d6d445daa489fcdc0c1988c4c875e6358175f484fdd8a89aa152503 + restart: unless-stopped + environment: + - OLLAMA_BASE_URL=${OLLAMA_BASE_URL} + - WEBUI_SECRET_KEY=${WEBUI_SECRET_KEY} + - WEBUI_AUTH=true + volumes: + - ${APPDATA_PATH}/open-webui/data:/app/backend/data + ports: + - ${PORT}:8080 + networks: + - frontend + +networks: + frontend: + external: true