webui/docker-compose.yml hinzugefügt

This commit is contained in:
2025-05-11 20:12:36 +00:00
parent aefc49bd22
commit fb24ee2229

11
webui/docker-compose.yml Normal file
View File

@@ -0,0 +1,11 @@
services:
open-webui:
image: ${WEBUI_IMAGE:-ghcr.io/open-webui/open-webui:main}
container_name: ${WEBUI_NAME:-open-webui}
ports:
- "${WEBUI_PORT:-3000}:8080"
volumes:
- ${WEBUI_VOLUME:-open-webui_data}:/app/backend/data
restart: always
extra_hosts:
- "host.docker.internal:host-gateway"