Complete the command to list all running Docker containers.
docker [1]The docker ps command lists all running containers.
Complete the command to start a new container named 'green' from the image 'myapp:latest'.
docker run -d --name [1] myapp:latestIn blue-green deployment, the new version is often called 'green'.
Fix the error in the command to stop the 'blue' container.
docker [1] blueThe docker stop command stops a running container.
Fill both blanks to create a Docker network named 'blue-green-net' and connect the 'green' container to it.
docker network [1] blue-green-net docker network [2] blue-green-net green
First, create the network with docker network create. Then connect the container with docker network connect.
Fill all three blanks to update the load balancer to point to the 'green' container, stop the 'blue' container, and remove it.
docker service update --publish-add [1] my-loadbalancer docker [2] blue docker [3] blue
Publish port 80 to 80 on the load balancer, stop the old 'blue' container, then remove it.