Docker (Container Management) Flashcards
1
Q
What command is used to show running containers?
A
docker ps
2
Q
A
3
Q
What command is used to list available images?
A
docker images
4
Q
What command is used to download and image from Docker Hub?
A
docker pull <image></image>
5
Q
What command is used to start a new container?
A
docker run <image></image>
6
Q
What command is used to stop a running container?
A
docker stop <container></container>