1、拉取centos7镜像
2、启动镜像centos7,如果不指定 /bin/bash,容器运行后会自动停止
[root@localhost ~]# docker run -d -i -t <image> /bin/bash</image>
3、进入容器
[root@localhost ~]# docker exec -it <container> bash</container>
4、进入后发现没有ifconfig,直接yum安装
[root@8f10fbd6bd5a /]# yum install -y net-tools
5、无法ping外网,查找资料重建docker0网络解决
[root@localhost ~]# pkill docker [root@localhost ~]# iptables -t nat -F [root@localhost ~]# ifconfig docker0 down [root@localhost ~]# brctl delbr docker0 [root@localhost ~]# systemctl restart docker [root@localhost ~]# docker start <container></container>
推荐教程:docker教程
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
喜欢就支持一下吧
相关推荐