Some checks failed
Build Images and Deploy / Update-PROD-Stack (push) Failing after 14s
24 lines
516 B
YAML
24 lines
516 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
loot-hunt:
|
|
image: reg.dev.nervesocket.com/loot-hunt:latest
|
|
container_name: loot-hunt
|
|
restart: unless-stopped
|
|
ports:
|
|
- "${PORT:-3000}: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
|