2026-04-08 18:29:19 -04:00
|
|
|
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:
|
2026-04-09 08:34:55 -04:00
|
|
|
- "${PORT:-3737}:${PORT:-3737}"
|
|
|
|
|
env_file:
|
|
|
|
|
- .env
|
2026-04-08 18:29:19 -04:00
|
|
|
restart: unless-stopped
|
|
|
|
|
healthcheck:
|
2026-04-09 08:34:55 -04:00
|
|
|
test: ["CMD", "wget", "-qO-", "http://localhost:${PORT:-3737}/ping"]
|
2026-04-08 18:29:19 -04:00
|
|
|
interval: 15s
|
|
|
|
|
timeout: 5s
|
|
|
|
|
retries: 3
|