Docker - Production Patterns
Given the following commands, what will be the output of
docker ps after switching traffic to green?docker run -d --name blue_app app:v1
docker run -d --name green_app app:v2
docker stop blue_app
docker start green_app
