How to change ports for Traefik (Proxy and Dashboard) - devuserPP/traefik_ci GitHub Wiki

Configuration: for running traefik on different port you have to change:

for traefik proxy

in file /traefik/docker-compose.yml ports:        ### - target: 90        - published: 90

in file /traefik/config/traefik.toml [entryPoints.http]        address = ":90"

for traefik dashboard

in file /traefik/docker-compose.yml ports:        - target: 8090        - published: 8090

in file /traefik/config/traefik.toml [entryPoints.dashboard]        address = ":8090"