1、拉取centos7鏡像
[root@localhost ~]# docker pull centos:7
2、啟動映像centos7,若不指定/bin/bash,容器運作後會自動停止
[root@localhost ~]# docker run -d -i -t <IMAGE ID> /bin/bash
3、進入容器
[root@localhost ~]# docker exec -it <CONTAINER ID> bash
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 ID>
推薦教學:docker教學
以上是docker如何安裝centos映像的詳細內容。更多資訊請關注PHP中文網其他相關文章!