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>
19 lines
No EOL
524 B
YAML
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 |