Complete the command to list all running Docker containers.
docker [1]The docker ps command lists all running containers.
Complete the command to create and start a container from the image named 'nginx'.
docker [1] nginxThe docker run command creates and starts a container from an image.
Fix the error in the command to stop a container with ID 'abc123'.
docker [1] abc123The docker stop command stops a running container.
Fill both blanks to create a container named 'webserver' from the 'nginx' image and run it in detached mode.
docker [1] --name [2] -d nginx
Use docker run --name webserver -d nginx to start a container named 'webserver' in detached mode.
Fill all three blanks to remove a stopped container named 'old_container'.
docker [1] [2] [3]
The command docker rm old_container removes the container named 'old_container'. Use '-f' to force removal if the container is running.