Files
TaxHacker/docker-compose.build.yml
2025-03-22 09:27:06 +01:00

20 lines
397 B
YAML

services:
app:
build:
context: .
dockerfile: Dockerfile
ports:
- "7331:7331"
environment:
- NODE_ENV=production
- UPLOAD_PATH=/app/data/uploads
- DATABASE_URL=file:/app/data/db.sqlite
volumes:
- ./data:/app/data
restart: unless-stopped
logging:
driver: "local"
options:
max-size: "100M"
max-file: "3"