first commit
Build Images and Deploy / Update-PROD-Stack (push) Failing after 14s

This commit is contained in:
2026-02-28 00:01:41 -05:00
commit 4255d95c68
36 changed files with 4665 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
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