23 lines
661 B
YAML
23 lines
661 B
YAML
services:
|
|
biggame-xml-proxy:
|
|
image: node:20-alpine
|
|
container_name: biggame-xml-proxy
|
|
working_dir: /app
|
|
volumes:
|
|
- ./:/app
|
|
command: sh -c "npm install --silent && node server.js"
|
|
ports:
|
|
- "3737:3737"
|
|
environment:
|
|
BG_BEARER_TOKEN: "bg_live_k_K1zO7Jh-fMkRttp8.uoD4OzE3L_SrLXu0tTsS_4nDdL8DkhzRV6eOSXSkivY"
|
|
BG_EVENT_ID: "1"
|
|
BG_RANKING: "stableford_gross"
|
|
POLL_INTERVAL_MS: "10000"
|
|
STALE_THRESHOLD_MS: "60000"
|
|
PORT: "3737"
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "wget", "-qO-", "http://localhost:3737/ping"]
|
|
interval: 15s
|
|
timeout: 5s
|
|
retries: 3
|