mirror of
https://github.com/vas3k/TaxHacker.git
synced 2026-01-06 13:41:05 -06:00
20 lines
397 B
YAML
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"
|