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
欢迎来撩 : 汇总all
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
欢迎来撩 : 汇总all