12 lines
411 B
YAML
12 lines
411 B
YAML
# -- webui: prebuilt static SPA (served on :80 inside the container) ------
|
|
# The browser-facing API base URL is injected at container start from
|
|
# PUBLIC_API_BASE_URL (window.__APP_CONFIG__) — no rebuild needed.
|
|
webui:
|
|
image: ${WEBUI_IMAGE}:${MCMA_IMAGE_TAG}
|
|
restart: unless-stopped
|
|
environment:
|
|
PUBLIC_API_BASE_URL: ${PUBLIC_API_BASE_URL}
|
|
@WEBUI_PORTS@
|
|
depends_on:
|
|
- api
|