Problem description:
The host is Windows 10, and the virtual machine CentOS7 runs a docker container (Tomcat7), and the host cannot access the services run by the container.
Cause:
The host cannot access the docker container ip.
Solution:
1. Execute the ifconfig command to check the network segment of the docker container and the IP address of centos
2. Administrator Open the host powershell as identity: execute the command: ROUTE -p add 172.17.0.0 mask 255.255.0.0 192.168.102.129
Docker container internal port is mapped to the external host port.
Recommended tutorial: docker tutorial
The above is the detailed content of What should I do if the host cannot access the docker container in the virtual machine?. For more information, please follow other related articles on the PHP Chinese website!