6 solutions for network failure in Docker container Note: The following method is a solution that allows you to ping the public IP in the container. If you cannot ping the public IP, the host may not be able to access the Internet (try ping 8.8.8.8) 1. Use the –net:host option sudo docker run --net:host --name ubuntu_bash -i -t ubuntu:latest /bin/bash 2. Use –dns option sudo docker run --dns 8.8.8.8 --dns 8.8.4.4 --name ubuntu_bash -i -t ubuntu:latest /bin/bash 3. Change DNS server vi /etc/default/docker 4. No need for dnsmasq vi /etc/NetworkManager/NetworkManager.conf sudo restart network-manager sudo restart docker 5. Rebuild the docker0 network pkill docker #Terminate the process iptables -t nat -F #Clear all chains in the nat table ifconfig docker0 down #Stop the docker default bridge brctl delbr docker0 #Delete the bridge docker -d 6. Modify /etc/hosts directly in docker Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links You may also be interested in:
|
<<: JavaScript gets the scroll bar position and slides the page to the anchor point
>>: Vue+Bootstrap realizes a simple student management system
This database query statement is one of 50 databa...
The reuse of code in vue provides us with mixnis....
The relevant person in charge of Baidu Input Metho...
The react version when writing this article is 16...
like LIKE requires the entire data to match, whil...
Because I have a database tutorial based on SQL S...
Recently, I started upgrading my blog. In the proc...
Transtion in vue is an animation transition enca...
First create a specific project directory for you...
1. Prepare data The following operations will be ...
1. Commonjs Commonjs is a custom module in nodejs...
Table of contents Preface 1. Preparation - Server...
Table of contents vue2.x Pre-concept: Routing hoo...
Table of contents Vue first screen performance op...
JS calculates the total price of goods in the sho...