0
0
Dockerdevops~5 mins

Container states (created, running, paused, stopped) in Docker - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the created state mean for a Docker container?
The container has been set up but is not running yet. It is ready to start but no processes inside it are active.
Click to reveal answer
beginner
Describe the running state of a Docker container.
The container is active and executing its main process. It is fully operational and can respond to commands or requests.
Click to reveal answer
intermediate
What happens when a Docker container is in the paused state?
The container's processes are temporarily frozen. It uses minimal resources but can be resumed later without restarting.
Click to reveal answer
beginner
Explain the stopped state of a Docker container.
The container has finished running or was manually stopped. Its processes are not running, but the container still exists and can be restarted.
Click to reveal answer
beginner
How can you check the current state of all Docker containers?
Use the command docker ps -a. It lists all containers with their current states like running, exited (stopped), or created.
Click to reveal answer
Which Docker container state means the container is ready but not yet running?
Acreated
Brunning
Cpaused
Dstopped
What does the 'paused' state do to a Docker container?
AStops and removes the container
BRestarts the container
CFreezes the container's processes temporarily
DStarts the container
Which command shows all Docker containers and their states?
Adocker ps
Bdocker start
Cdocker stop
Ddocker ps -a
If a container is 'stopped', what does it mean?
AIt has finished or was manually stopped
BIt is paused temporarily
CIt is running normally
DIt is being created
Which state indicates a container is actively running its main process?
Acreated
Brunning
Cpaused
Dstopped
Explain the differences between the Docker container states: created, running, paused, and stopped.
Think about what the container is doing or not doing in each state.
You got /4 concepts.
    How can you manage and check the state of Docker containers using commands?
    Focus on commands that change or show container states.
    You got /4 concepts.