-
Notifications
You must be signed in to change notification settings - Fork 5.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not listening on port 80 #432
Comments
OK good to hear that ! |
@emilevauge Just ran into this issue myself. Looks like the official traefik in dockerhub is still busted. Your emilevauge/traefik is working great. Documentation however all uses the official Traefik and causes massive troubleshooting headaches |
@mjgorman the dockerhub version will be updated soon ;) docker-library/official-images#1822 |
I have the same issue on Mac, using exactly the same docker-compose as above. Any help?
Port info:
Docker image info:
|
@dakkusingh chances are you are affected by a different problem. Join us on Slack for real time help or create a question on Stackoverflow If you are really certain that this is a bug (either a new one or a regression), please open a new issue. |
Hi Timo, |
Hi
I use traefik on multiple docker envs without problems, but in one it didn't work
I simplify to your docker-compose example, and this is what happen :
cat docker-compose.yml
docker-compose up -d
curl -H Host:whoami.docker.localhost http://127.0.0.1
curl http://127.0.0.1:8080/api
I test directly on container IP and it seems the conatiner itself is listening only on port 8080, not 80 :
exec 3<>/dev/tcp/172.21.0.3/80; echo $?
exec 3<>/dev/tcp/172.21.0.3/8080; echo $?
How can I debug why traefik is not listneing on port 80 ?
Env information :
Thanx
The text was updated successfully, but these errors were encountered: