Complete the command to list all running Docker containers.
docker [1]The docker ps command shows all running containers.
Complete the command to start an existing container named 'webapp'.
docker [1] webappThe docker start command starts a stopped container.
Fix the error in the command to open an interactive shell inside a running container named 'db'.
docker exec -it [1] /bin/bashThe container name or ID must be specified after docker exec -it.
Fill both blanks to run a new container from the 'nginx' image and map port 8080 on the host to port 80 in the container.
docker run -d -p [1]:[2] nginx
Port 8080 on the host maps to port 80 inside the container where nginx listens.
Fill all three blanks to create a Docker volume named 'data_vol', mount it to '/data' inside a container, and run the container from the 'busybox' image.
docker volume [1] data_vol && docker run -v data_vol:[2] [3] busybox
You create a volume with docker volume create, mount it to /data, and run interactively with -it.