How can i access the website running inside container at ip 172.20.128.2 .I do not want to do port forwarding and using host ip. I am aware that i can forward docker port on host port and can access using host IP but i do not want to do in this way. I am using docker 1.10
相关问题
- Docker task in Azure devops won't accept "$(pw
- Unable to run mariadb when mount volume
- Unspecified error (0x80004005) while running a Doc
- What would prevent code running in a Docker contai
- How to reload apache in php-apache docker containe
This blog post explains many ways to reach your container from outside. Have a look Four ways to connect a docker container.
Be sure your web server is well configured testing at least once with -p option.
Also you can test with the
--network host
optionRegards