11 lines
330 B
YAML
11 lines
330 B
YAML
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" |