webex-booking-webhook/docker-compose.yml
jmcqueen a93a1194e6 Add Webex booking webhook with occupancy tracking and utilization reports.
Track in-meeting occupancy via xAPI polling and workspaceMetrics, store Webex attendee counts for linked meetings, and surface under-utilized room bookings on the dashboard.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-16 16:25:41 -04:00

19 lines
No EOL
524 B
YAML

version: '3.9'
services:
webhook:
build: .
container_name: webex-booking-webhook
restart: unless-stopped
ports:
- "1867:1867" # or whatever port you're using locally
env_file:
- .env
volumes:
- ./data:/app/data # Persistent SQLite DB
- ./tokens:/app/tokens # Read-only tokens
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:1867/health"]
interval: 30s
timeout: 5s
retries: 3