20 lines
504 B
YAML
20 lines
504 B
YAML
services:
|
|
app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "3009:3000"
|
|
environment:
|
|
- NODE_ENV=production
|
|
- DATABASE_URL=file:/app/data/dev.db
|
|
- AUTH_SECRET=${AUTH_SECRET:-your-secret-key-change-in-production}
|
|
- AUTH_TRUST_HOST=true
|
|
- AUTH_URL=${AUTH_URL:-https://workshop-manager.julienfroidefond.com}
|
|
volumes:
|
|
- ./data:/app/data
|
|
restart: unless-stopped
|
|
labels:
|
|
- "com.centurylinklabs.watchtower.enable=false"
|
|
|