Tirez l'image
docker pull centos
Copier après la connexion
Créez un réseau personnalisé
docker network create --subnet=172.18.0.0/16 mynetwork
Copier après la connexion
Démarrer le conteneur centos avec une IP fixe
docker run -itd --privileged --name centos1 --net mynetwork --ip 172.18.0.11 centos:latest /usr/sbin/init docker run -itd --privileged --name centos2 --net mynetwork --ip 172.18.0.12 centos:latest /usr/sbin/init docker run -itd --privileged --name centos3 --net mynetwork --ip 172.18.0.13 centos:latest /usr/sbin/init
Copier après la connexion
Afficher les détails du conteneur Docker (y compris l'IP)
docker ps docker inspect 容器ID或容器名称
Copier après la connexion