51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

docker centos 7 无法上网

docker run --name base -d centos:7 tail -f /etc/hosts

这样进入后,遇到的问题就是奇葩 不能上网

解决方案:

启动命令的问题,启动的时候需要添加网络策略参数 --net ,建议启动命令如下:

docker run --net host --name base2 -d centos:7 tail -f /etc/hosts

然后进入:

docker exec -it base2 bash

赞(0)
未经允许不得转载:工具盒子 » docker centos 7 无法上网