Files
nlcc-itinerary/docker-compose.yml
Joshua Ryder b3eb32a688 Clean up docker-compose.yml
Removed build configuration from docker-compose.yml. The image should be built
separately using 'docker build -t nlcc-itinerary:latest .' and the compose file
now just references the pre-built image with runtime configuration.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-04 14:34:58 -05:00

21 lines
611 B
YAML

services:
nlcc-itinerary:
image: 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