docker如何安装centos镜像
时间:2022-02-28 15:10
1、拉取centos7镜像 2、启动镜像centos7,如果不指定 /bin/bash,容器运行后会自动停止 3、进入容器 4、进入后发现没有ifconfig,直接yum安装 5、无法ping外网,查找资料重建docker0网络解决 推荐教程:docker教程 以上就是docker如何安装centos镜像的详细内容,更多请关注gxlcms其它相关文章![root@localhost ~]# docker pull centos:7
[root@localhost ~]# docker run -d -i -t <IMAGE ID> /bin/bash
[root@localhost ~]# docker exec -it <CONTAINER ID> bash
[root@8f10fbd6bd5a /]# yum install -y net-tools
[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 ID>