Running traefik with docker and bind (sub)domain to dashboard but i got 503 when request to that.
Traefik is modern proxy reverse and i run it with docker by blew code. to see dashboard without direct url i binding port 8080 to 8080 and after that i can see dashboard. in dashboard Route Rule Host:monitor.monitor.my_domain
was present in front and http://172.20.0.3:8080
was present in back but when i try to access to http://monitor.my_domain
i got 503 error
docker run -d \
-v /var/run/docker.sock:/var/run/docker.sock \
-v $PWD/traefik.toml:/traefik.toml \
-v $PWD/acme.json:/acme.json \
-p 80:80 \
-p 443:443 \
-l traefik.frontend.rule=Host:monitor.my_domain\
-l traefik.port=8080 \
--network web \
--name traefik \
traefik:1.7.6-alpine