fix(traefik): update local dev ports and gitea SSH IP

- Change Traefik local HTTP port from 8080 to 8081 (conflict with cadvisor)
- Change Traefik dashboard port to 8093 (conflicts with cadvisor, Hyperion)
- Update Gitea SSH service IP from 172.23.0.2 to 172.23.0.3
- Note: Gitea SSH works directly via Docker port mapping in local dev
- Traefik TCP routing only needed for production (host network mode)
This commit is contained in:
2025-11-05 14:51:37 +01:00
parent 95147ff23e
commit cf903f2582
9 changed files with 5 additions and 5 deletions

View File

@@ -20,8 +20,8 @@ services:
# For local development, we only use HTTP (no HTTPS needed)
# Note: 8443:443 is used by the web container
ports:
- "8080:80" # HTTP on port 80 (mapped to host port 8080)
- "8080:8080" # Traefik API entrypoint (for api.insecure=true dashboard)
- "8081:80" # HTTP on port 80 (mapped to host port 8081)
- "8093:8080" # Traefik API entrypoint (for api.insecure=true dashboard)
environment:
- TZ=Europe/Berlin
volumes:

View File

@@ -14,7 +14,7 @@ tcp:
loadBalancer:
servers:
# Gitea container SSH service
# Note: Using container IP from traefik-public network
# Note: Using container IP from gitea_gitea-internal network
# Traefik runs in host network mode, so we need the actual container IP
# IP address: 172.23.0.2 (traefik-public network)
- address: "172.23.0.2:22"
# IP address: 172.23.0.3 (gitea_gitea-internal network)
- address: "172.23.0.3:22"