Complete the command to list all containers, including those not running.
docker ps [1]The -a option shows all containers, including created, stopped, and paused ones.
Complete the command to pause a running container named 'webapp'.
docker [1] webappThe pause command suspends all processes in the container without stopping it.
Fix the error in the command to start a container with ID 'abc123'.
docker [1] abc123The start command resumes a stopped container. run creates and starts a new container, which is different.
Fill both blanks to create a container named 'db' from the image 'mysql' and keep it stopped after creation.
docker [1] --name [2] mysql
The create command makes a container but does not start it. The name 'db' is assigned with --name.
Fill both blanks to unpause a container named 'cache' and then stop it.
docker [1] cache && docker [2] cache
The unpause command resumes the paused container, making it running. The stop command stops it. pause suspends a running container, and start resumes a stopped one.