Heim > Artikel > Betrieb und Instandhaltung > Wie Docker das Centos-Image installiert
1. Ziehen Sie das Centos7-Image
[root@localhost ~]# docker pull centos:7
2. Starten Sie das Centos7-Image, wenn /bin/bash nicht angegeben ist >
[root@localhost ~]# docker run -d -i -t <IMAGE ID> /bin/bash3. Geben Sie den Container ein
[root@localhost ~]# docker exec -it <CONTAINER ID> bash4 Nach der Eingabe habe ich festgestellt, dass es keine ifconfig gibt, installieren Sie es direkt mit yum
[root@8f10fbd6bd5a /]# yum install -y net-tools5, Es ist nicht möglich, das externe Netzwerk anzupingen, die Informationen zu finden und das Docker0-Netzwerk nicht neu aufzubauen, um das Problem zu lösen
[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>Empfohlenes Tutorial:
Das obige ist der detaillierte Inhalt vonWie Docker das Centos-Image installiert. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!