14 lines
314 B
YAML
14 lines
314 B
YAML
services:
|
|
nlcc-itinerary:
|
|
build: .
|
|
container_name: nlcc-itinerary
|
|
ports:
|
|
- "3002:3000"
|
|
volumes:
|
|
- ./data:/app/data
|
|
environment:
|
|
- NODE_ENV=production
|
|
- AUTH_SECRET=d8c7c1735fc853b807c1bccce791b054
|
|
- SITE_URL=https://nlcc.rydertech.us
|
|
restart: unless-stopped
|