The committed connection strings, EmailSettings and seed-admin password are intentional configuration for this project, not a bug. docker-compose no longer requires env vars; deployment works exactly as before. The seeder stays config-driven (SeedAdmin block now committed), and env-var overrides remain available if ever wanted. bug-fixes.md updated to reclassify #15/#16. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
17 lines
324 B
YAML
17 lines
324 B
YAML
services:
|
|
sportsdivision:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
image: registry.dwarrington.com/sportsdivision:${IMAGE_TAG:-latest}
|
|
container_name: sportsdivision
|
|
restart: always
|
|
ports:
|
|
- "5039:80"
|
|
networks:
|
|
- caddy_network
|
|
|
|
networks:
|
|
caddy_network:
|
|
external: true
|