fix: workflows

This commit is contained in:
valknarness
2025-10-26 02:05:34 +02:00
parent 6ee26db0ba
commit 7ab9b4f091
7 changed files with 488 additions and 3 deletions

View File

@@ -3,12 +3,16 @@ services:
build:
context: .
dockerfile: Dockerfile
args:
# Set to true to include pre-built database in image
# Set to false to mount database at runtime
INCLUDE_DATABASE: false
ports:
- "3000:3000"
environment:
- NODE_ENV=production
volumes:
# Mount SQLite database directory
# Mount SQLite database directory (used when INCLUDE_DATABASE=false)
- ./data:/app/data
restart: unless-stopped
healthcheck: