Add deployment scaffolding (Dockerfile, docker-compose, nginx)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-02-07 14:14:29 +01:00
parent 0cf11b32fb
commit a36244187a
1 changed files with 5 additions and 0 deletions

View File

@ -6,7 +6,12 @@ services:
labels:
- "traefik.enable=true"
- "traefik.http.routers.cosmolocal.rule=Host(`cosmolocal.world`) || Host(`www.cosmolocal.world`)"
- "traefik.http.routers.cosmolocal.entrypoints=web"
- "traefik.http.services.cosmolocal.loadbalancer.server.port=3000"
- "traefik.http.routers.cosmolocal-secure.rule=Host(`cosmolocal.world`) || Host(`www.cosmolocal.world`)"
- "traefik.http.routers.cosmolocal-secure.entrypoints=websecure"
- "traefik.http.routers.cosmolocal-secure.tls=true"
- "traefik.http.routers.cosmolocal-secure.service=cosmolocal"
networks:
- traefik-public