185 lines
7.6 KiB
YAML
185 lines
7.6 KiB
YAML
x-openmaic-build-args: &openmaic-build-args
|
|
ALLOWED_FRAME_ANCESTORS: ${ALLOWED_FRAME_ANCESTORS:-}
|
|
NEXT_PUBLIC_PERSISTENCE: ${NEXT_PUBLIC_PERSISTENCE:-}
|
|
NEXT_PUBLIC_PERSISTENCE_TOKEN: ${NEXT_PUBLIC_PERSISTENCE_TOKEN:-}
|
|
NEXT_PUBLIC_MAIC_EDITOR_ENABLED: ${NEXT_PUBLIC_MAIC_EDITOR_ENABLED:-}
|
|
NEXT_PUBLIC_MAIC_EDITOR_RENDERER_ENABLED: ${NEXT_PUBLIC_MAIC_EDITOR_RENDERER_ENABLED:-}
|
|
NEXT_PUBLIC_MAIC_PLAYBACK_RENDERER_ENABLED: ${NEXT_PUBLIC_MAIC_PLAYBACK_RENDERER_ENABLED:-}
|
|
NEXT_PUBLIC_PI_CHAT_ENABLED: ${NEXT_PUBLIC_PI_CHAT_ENABLED:-}
|
|
NEXT_PUBLIC_SHOW_VOCATIONAL_TEST_UI: ${NEXT_PUBLIC_SHOW_VOCATIONAL_TEST_UI:-}
|
|
NEXT_PUBLIC_ENABLE_VIDEO_EXPORT: ${NEXT_PUBLIC_ENABLE_VIDEO_EXPORT:-}
|
|
NEXT_PUBLIC_VIDEO_EXPORT_CTA_DESTINATION: ${NEXT_PUBLIC_VIDEO_EXPORT_CTA_DESTINATION:-}
|
|
NEXT_PUBLIC_ENABLE_PPTX_IMPORT: ${NEXT_PUBLIC_ENABLE_PPTX_IMPORT:-}
|
|
|
|
services:
|
|
# NEXT_PUBLIC_* values are compiled into the browser bundle. Each role therefore
|
|
# gets its own image build; OPENMAIC_DEPLOYMENT_ROLE repeats the same value at
|
|
# runtime so server-side authorization cannot disagree with the rendered UI.
|
|
learner:
|
|
build:
|
|
context: .
|
|
args:
|
|
<<: *openmaic-build-args
|
|
NEXT_PUBLIC_OPENMAIC_DEPLOYMENT_ROLE: learner
|
|
ports:
|
|
- '${OPENMAIC_LEARNER_PORT:-3000}:3000'
|
|
env_file:
|
|
- .env.local
|
|
environment:
|
|
OPENMAIC_DEPLOYMENT_ROLE: learner
|
|
NEXT_PUBLIC_OPENMAIC_DEPLOYMENT_ROLE: learner
|
|
# Point the app at the render service when it's running. This wins over any
|
|
# RENDER_SERVICE_URL in .env.local; the service only starts under the
|
|
# "video-export" profile. The app's capability check probes the service's
|
|
# /health, so if the profile is off (service absent) the app reports the
|
|
# MP4 export disabled and degrades to the ZIP-download path — this URL
|
|
# being set does not, by itself, advertise a working render.
|
|
RENDER_SERVICE_URL: http://render-service:9000
|
|
networks:
|
|
- default # outbound internet (LLM/media provider APIs, etc.)
|
|
- render # reach the render service over the isolated network
|
|
volumes:
|
|
# Optional: mount server-providers.yml for provider config
|
|
# - ./server-providers.yml:/app/server-providers.yml:ro
|
|
- openmaic-data:/app/data
|
|
restart: unless-stopped
|
|
|
|
ops:
|
|
profiles:
|
|
- ops
|
|
build:
|
|
context: .
|
|
args:
|
|
<<: *openmaic-build-args
|
|
NEXT_PUBLIC_OPENMAIC_DEPLOYMENT_ROLE: ops
|
|
ports:
|
|
- '${OPENMAIC_OPS_PORT:-3102}:3000'
|
|
env_file:
|
|
- .env.local
|
|
environment:
|
|
OPENMAIC_DEPLOYMENT_ROLE: ops
|
|
NEXT_PUBLIC_OPENMAIC_DEPLOYMENT_ROLE: ops
|
|
RENDER_SERVICE_URL: http://render-service:9000
|
|
networks:
|
|
- default
|
|
- render
|
|
volumes:
|
|
- openmaic-ops-data:/app/data
|
|
restart: unless-stopped
|
|
|
|
server:
|
|
profiles:
|
|
- server
|
|
build:
|
|
context: .
|
|
args:
|
|
<<: *openmaic-build-args
|
|
NEXT_PUBLIC_OPENMAIC_DEPLOYMENT_ROLE: server
|
|
ports:
|
|
- '${OPENMAIC_SERVER_PORT:-3103}:3000'
|
|
env_file:
|
|
- .env.local
|
|
environment:
|
|
OPENMAIC_DEPLOYMENT_ROLE: server
|
|
NEXT_PUBLIC_OPENMAIC_DEPLOYMENT_ROLE: server
|
|
networks:
|
|
- default
|
|
volumes:
|
|
- openmaic-server-data:/app/data
|
|
restart: unless-stopped
|
|
|
|
# Optional PostgreSQL backing for the app-embedded persistence API.
|
|
# The app reads DATABASE_URL and PERSISTENCE_DEV_TOKEN from .env.local; keeping
|
|
# those values there avoids changing the default browser-only deployment.
|
|
postgres:
|
|
image: postgres:16
|
|
profiles:
|
|
- server-persistence
|
|
environment:
|
|
- POSTGRES_DB=openmaic
|
|
- POSTGRES_USER=openmaic
|
|
# Development default only. Override this and the matching DATABASE_URL
|
|
# before using the stack outside a local trusted environment.
|
|
- POSTGRES_PASSWORD=${PERSISTENCE_POSTGRES_PASSWORD:-openmaic-dev}
|
|
healthcheck:
|
|
test: ['CMD-SHELL', 'pg_isready -U openmaic -d openmaic']
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 10
|
|
start_period: 5s
|
|
volumes:
|
|
- openmaic-postgres:/var/lib/postgresql/data
|
|
restart: unless-stopped
|
|
|
|
# Isolated MP4 render service (Node 22 + Chromium + FFmpeg) for classroom video
|
|
# export (issue #866). Opt-in: only starts with `--profile video-export`, since
|
|
# the image is heavy (bundles Chromium + FFmpeg) and the capability is optional.
|
|
#
|
|
# docker compose --profile video-export up --build
|
|
#
|
|
# Sits on the `render` network (`internal: true`, no host/internet gateway).
|
|
# It shares that network with `learner` and `ops` only so those apps can reach
|
|
# it; to stop the untrusted Chromium from initiating connections *back* to the
|
|
# app over that shared network, the container's entrypoint installs an iptables egress
|
|
# lockdown (needs CAP_NET_ADMIN) that drops all outbound except loopback and
|
|
# replies on app-initiated connections. The export ZIP is self-contained, so
|
|
# the render needs no outbound at all.
|
|
render-service:
|
|
build: ./render-service
|
|
profiles:
|
|
- video-export
|
|
expose:
|
|
- '9000'
|
|
# Required for the entrypoint's iptables egress lockdown. Without it the
|
|
# service still boots, but logs a warning and does NOT block Chromium egress.
|
|
cap_add:
|
|
- NET_ADMIN
|
|
environment:
|
|
- PORT=9000
|
|
# The standard CPU profile is explicit: BeginFrame, one producer worker,
|
|
# one render, and one extraction. Select low-memory explicitly instead of
|
|
# allowing producer to silently change capture mode from cgroup heuristics.
|
|
- RENDER_RESOURCE_PROFILE=${RENDER_RESOURCE_PROFILE:-standard}
|
|
- PRODUCER_HEADLESS_SHELL_PATH=/usr/bin/chromium-headless-shell
|
|
- RENDER_MAX_CONCURRENCY=1
|
|
- RENDER_MAX_CONCURRENT_EXTRACTIONS=1
|
|
# Long compositions still need CDP headroom even with one explicit worker.
|
|
- PRODUCER_PUPPETEER_PROTOCOL_TIMEOUT_MS=900000
|
|
# OpenMAIC's long slide exports currently exhaust producer's 15s static
|
|
# verification budget and disable dedup anyway. Skip that guaranteed-lost
|
|
# startup cost until the verifier can share/scale its plan across workers.
|
|
- HF_STATIC_DEDUP=false
|
|
# In this default topology the app is exposed directly and does NOT set
|
|
# TRUST_PROXY_HEADERS, so every caller collapses to one identity. A
|
|
# per-identity limit would then throttle the whole deployment to a single
|
|
# render, so disable it here and rely on RENDER_MAX_CONCURRENCY + the global
|
|
# RENDER_MAX_QUEUE cap. Set this >0 only with a trusted proxy supplying
|
|
# per-user identity (see render-service/README.md).
|
|
- RENDER_MAX_JOBS_PER_USER=0
|
|
# Bound RAM: each render (Chromium + FFmpeg + archive expansion) is memory-heavy.
|
|
# The standard profile requires 10 GiB. For the explicit low-memory profile,
|
|
# set RENDER_RESOURCE_PROFILE=low-memory and RENDER_SERVICE_MEMORY_LIMIT=4g.
|
|
mem_limit: ${RENDER_SERVICE_MEMORY_LIMIT:-10g}
|
|
# Chromium media/frame work can exceed Docker's 64 MiB default shared-memory
|
|
# mount. This is a ceiling inside the selected profile cgroup, not eager allocation.
|
|
shm_size: 2gb
|
|
networks:
|
|
- render
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
default: {}
|
|
# Isolated network for app <-> render-service traffic. `internal: true` means
|
|
# no route to the host or internet. The learner and ops services share it so
|
|
# they can reach the render service; the render container additionally blocks
|
|
# its own egress (iptables, see the service's entrypoint) so the untrusted Chromium
|
|
# can't use this shared network to reach the app.
|
|
render:
|
|
internal: true
|
|
|
|
volumes:
|
|
openmaic-data:
|
|
openmaic-ops-data:
|
|
openmaic-server-data:
|
|
openmaic-postgres:
|