Changes: - docker-compose.yml: https://nlcc.rydertech.us → https://church.example.com - Dockerfile: https://nlcc.rydertech.us → https://church.example.com - README.md: https://nlcc.rydertech.us → https://church.example.com Rationale: - Makes the repository more generic and reusable - Users won't be confused by site-specific URLs - Follows standard documentation practices using example.com - Clearer that SITE_URL needs to be customized for each deployment The example.com domain is reserved by IANA for documentation purposes, making it the perfect choice for configuration templates. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
27 lines
835 B
YAML
27 lines
835 B
YAML
services:
|
|
nlcc-itinerary:
|
|
image: glcr.rydertech.us/ryder/nlcc-itinerary:latest
|
|
container_name: nlcc-itinerary
|
|
ports:
|
|
- "3002:3000"
|
|
volumes:
|
|
- nlcc-data:/app/data
|
|
environment:
|
|
- NODE_ENV=production
|
|
- SITE_URL=https://church.example.com
|
|
# Optional: Customize admin username (default: "admin")
|
|
# - ADMIN_USERNAME=admin
|
|
# Optional: Set custom admin password (otherwise auto-generated)
|
|
# - ADMIN_PASSWORD=your-secure-password
|
|
# Email configuration for password resets and notifications
|
|
- 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
|
|
|
|
volumes:
|
|
nlcc-data:
|
|
external: true
|