This commit is contained in:
2026-03-13 22:33:36 -05:00
parent b0aaf80c60
commit d684240697
4 changed files with 109 additions and 11 deletions

View File

@@ -10,10 +10,11 @@ services:
ports:
- "${HOST_PORT:-8080}:3000"
environment:
- PUID=${PUID:-99}
- PGID=${PGID:-100}
- TZ=${TZ:-UTC}
- NODE_ENV=${NODE_ENV:-production}
- PORT=3000
- MAX_FILE_SIZE=${MAX_FILE_SIZE:-10485760}
- TEMP_DIR=/app/temp
restart: unless-stopped
healthcheck:
test: ["CMD", "node", "-e", "require('http').get('http://localhost:3000/', (r) => {process.exit(r.statusCode === 200 ? 0 : 1)})"]