Files
nlcc-itinerary/docker-compose.yml

22 lines
583 B
YAML

services:
nlcc-itinerary:
build:
context: .
args:
- SITE_URL=https://nlcc.rydertech.us
- AUTH_SECRET=change-this-secret-in-production-please
- ADMIN_USERNAME=admin
- ADMIN_PASSWORD=Admin123!
container_name: nlcc-itinerary
ports:
- "3002:3000"
volumes:
- ./data:/app/data
environment:
- NODE_ENV=production
- AUTH_SECRET=change-this-secret-in-production-please
- SITE_URL=https://nlcc.rydertech.us
- ADMIN_USERNAME=admin
- ADMIN_PASSWORD=Admin123!
restart: unless-stopped