Files
nlcc-itinerary/docker-compose.yml

18 lines
499 B
YAML

services:
nlcc-itinerary:
build:
context: .
args:
- SITE_URL=${SITE_URL:-https://nlcc.rydertech.us}
- AUTH_SECRET=${AUTH_SECRET:-change-this-secret-in-production}
container_name: nlcc-itinerary
ports:
- "3002:3000"
volumes:
- ./data:/app/data
environment:
- NODE_ENV=production
- AUTH_SECRET=${AUTH_SECRET:-change-this-secret-in-production}
- SITE_URL=${SITE_URL:-https://nlcc.rydertech.us}
restart: unless-stopped