Compare commits

...

1 Commits

Author SHA1 Message Date
9764402ef2 feat: adapting dor server 2025-12-06 13:09:12 +01:00
2 changed files with 5 additions and 2 deletions

Binary file not shown.

View File

@@ -4,13 +4,16 @@ services:
context: .
dockerfile: Dockerfile
ports:
- '3011:3000'
- "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:-http://localhost:3011}
- AUTH_URL=${AUTH_URL:-https://workshop-manager.julienfroidefond.com}
volumes:
- ./data:/app/data
restart: unless-stopped
labels:
- "com.centurylinklabs.watchtower.enable=false"