Complete the command to start a Docker container named myapp.
docker container [1] myappThe start command is used to start a stopped Docker container.
Complete the command to stop a running Docker container named webserver.
docker container [1] webserverThe stop command stops a running container gracefully.
Fix the error in the command to start a container with the name 'db'.
docker container [1] dbThe start command is used to start an existing container named 'db'. The run command creates and starts a new container, which is different.
Fill both blanks to stop and then remove a container named testapp.
docker container [1] testapp && docker container [2] testapp
First, you stop the container with stop, then remove it with rm.
Fill all three blanks to start a container named app1, then stop it, and finally remove it.
docker container [1] app1 && docker container [2] app1 && docker container [3] app1
You start the container with start, stop it with stop, and remove it with rm.