Containers Flashcards
How do Windows and Hyper-V containers differ?
Windows Containers: Shared Kernel
Hyper-V Containers: Multiple kernels, thin hypervisor layer
What is the docker command to get help?
docker –help
What is the docker command to view local images?
docker images
What is the docker command to view online image?
docker search
What is the docker command to view running containers?
docker ps -a
-a switch gets running + stopped
What is the docker command to create an image from a container?
docker commit
What is the docker command to view container state and settings?
Docker inspect
What is the docker command to remove a container?
docker rm
What is the docker command to remove a container image?
docker rmi
What is the docker command to show running processes within a specific container?
docker top