13 lines
360 B
YAML
13 lines
360 B
YAML
services:
|
|
app:
|
|
build: .
|
|
container_name: dndextended-app
|
|
restart: unless-stopped
|
|
ports:
|
|
- "${APP_PORT:-3000}:3000"
|
|
environment:
|
|
NODE_ENV: production
|
|
MONGODB_URI: ${MONGODB_URI:-mongodb://mongo:27017/dndextended}
|
|
AUTH_SECRET: ${AUTH_SECRET}
|
|
AUTH_URL: ${AUTH_URL}
|
|
AUTH_TRUST_HOST: ${AUTH_TRUST_HOST:-true} |