Changed image reference from local tag to GitLab container registry at glcr.rydertech.us/ryder/nlcc-itinerary:latest 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
21 lines
635 B
YAML
21 lines
635 B
YAML
services:
|
|
nlcc-itinerary:
|
|
image: glcr.rydertech.us/ryder/nlcc-itinerary:latest
|
|
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!
|
|
- EMAIL_HOST=smtp.example.com
|
|
- EMAIL_PORT=587
|
|
- EMAIL_USER=noreply@example.com
|
|
- EMAIL_PASSWORD=your-email-password
|
|
- EMAIL_FROM=New Life Christian Church <noreply@example.com>
|
|
restart: unless-stopped
|