Files
loot-hunt/prod-compose.yml
Mike Johnston 30f0c98102
All checks were successful
Build Images and Deploy / Update-PROD-Stack (push) Successful in 28s
updates to most features
2026-02-28 00:24:08 -05:00

22 lines
491 B
YAML

services:
loot-hunt:
image: reg.dev.nervesocket.com/loot-hunt:latest
container_name: loot-hunt
restart: unless-stopped
ports:
- "6233:3000"
environment:
- NODE_ENV=production
- PORT=3000
- BASE_URL=${BASE_URL}
- SESSION_SECRET=${SESSION_SECRET}
- DB_PATH=/app/data/loot-hunt.db
- UPLOADS_DIR=/app/data/uploads
- TRUST_PROXY=true
volumes:
- loot-hunt-data:/app/data
volumes:
loot-hunt-data:
driver: local