root@knight:/docker# docker images REPOSITORY TAG IMAGE ID CREATED SIZE mynginx 0.1 babef9096509 About an hour ago 140MB nginx latest 605c77e624dd 19 months ago 141MB hello-world latest feb5d9fea6a5 22 months ago 13.3kB root@knight:/docker# docker run -it --name nginx-2 nginx:latest /bin/bash root@634746a9bd08:/# exit exit root@knight:/docker# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES root@knight:/docker# docker run -it --name nginx-3 nginx:latest /bin/bash root@29ce1f7749cb:/# root@knight:/docker# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 29ce1f7749cb nginx:latest "/docker-entrypoint.…" 9 seconds ago Up 8 seconds 80/tcp nginx-3 root@knight:/docker#