22 lines
544 B
YAML
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
|