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:
@@ -20,8 +20,8 @@ services:
|
|||||||
# For local development, we only use HTTP (no HTTPS needed)
|
# For local development, we only use HTTP (no HTTPS needed)
|
||||||
# Note: 8443:443 is used by the web container
|
# Note: 8443:443 is used by the web container
|
||||||
ports:
|
ports:
|
||||||
- "8080:80" # HTTP on port 80 (mapped to host port 8080)
|
- "8081:80" # HTTP on port 80 (mapped to host port 8081)
|
||||||
- "8080:8080" # Traefik API entrypoint (for api.insecure=true dashboard)
|
- "8093:8080" # Traefik API entrypoint (for api.insecure=true dashboard)
|
||||||
environment:
|
environment:
|
||||||
- TZ=Europe/Berlin
|
- TZ=Europe/Berlin
|
||||||
volumes:
|
volumes:
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ tcp:
|
|||||||
loadBalancer:
|
loadBalancer:
|
||||||
servers:
|
servers:
|
||||||
# Gitea container SSH service
|
# 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
|
# Traefik runs in host network mode, so we need the actual container IP
|
||||||
# IP address: 172.23.0.2 (traefik-public network)
|
# IP address: 172.23.0.3 (gitea_gitea-internal network)
|
||||||
- address: "172.23.0.2:22"
|
- address: "172.23.0.3:22"
|
||||||
|
|||||||
Reference in New Issue
Block a user