service-teams-browser-bot/docker-compose.yml
ValueOn AG 043349f529 Initial commit: Browser-based Teams Meeting Bot
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-13 22:44:57 +01:00

22 lines
544 B
YAML

version: '3.8'
services:
teams-browser-bot:
build: .
ports:
- "4100:4100"
environment:
- NODE_ENV=production
- PORT=4100
- GATEWAY_WS_URL=${GATEWAY_WS_URL:-wss://gateway-int.poweron-center.net/api/teamsbot/ws}
- BOT_NAME=${BOT_NAME:-PowerOn AI}
- BOT_HEADLESS=true
- LOG_LEVEL=info
- SCREENSHOT_ON_ERROR=true
volumes:
- ./output:/app/output
restart: unless-stopped
# Required for Playwright/Chrome
shm_size: '2gb'
security_opt:
- seccomp:unconfined