feat: add Traefik + Authentik integration to docker-compose

- Route https://flights.domverse-berlin.eu via Traefik on the domverse network
- Protect with Authentik (authentik@docker ForwardAuth middleware)
- Remove host port bindings (80, 8000) — Traefik handles all ingress
- Frontend joins both default compose network (nginx→backend) and domverse (Traefik)
- Backend stays internal-only, no external exposure

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-28 12:07:31 +01:00
parent cdb8c20e82
commit 65b0d48f9d

View File

@@ -7,12 +7,11 @@ services:
dockerfile: Dockerfile.backend dockerfile: Dockerfile.backend
container_name: flight-radar-backend container_name: flight-radar-backend
restart: unless-stopped restart: unless-stopped
ports:
- "8000:8000"
environment: environment:
- DATABASE_PATH=/app/data/cache.db - DATABASE_PATH=/app/data/cache.db
volumes: volumes:
- flight-radar-data:/app/data - flight-radar-data:/app/data
# No ports exposed — only reachable by the frontend via the default compose network
frontend: frontend:
build: build:
@@ -20,11 +19,24 @@ services:
dockerfile: Dockerfile.frontend dockerfile: Dockerfile.frontend
container_name: flight-radar-frontend container_name: flight-radar-frontend
restart: unless-stopped restart: unless-stopped
ports:
- "80:80"
depends_on: depends_on:
- backend - backend
networks:
- default # shares default compose network with backend (nginx → http://backend:8000)
- domverse # Traefik discovers the container on this network
labels:
- "traefik.enable=true"
- "traefik.http.routers.flight-radar.rule=Host(`flights.domverse-berlin.eu`)"
- "traefik.http.routers.flight-radar.entrypoints=https"
- "traefik.http.routers.flight-radar.tls.certresolver=http"
- "traefik.http.routers.flight-radar.middlewares=authentik@docker"
- "traefik.http.services.flight-radar.loadbalancer.server.port=80"
volumes: volumes:
flight-radar-data: flight-radar-data:
driver: local driver: local
networks:
default: {} # explicit declaration required when any service has a custom networks block
domverse:
external: true