In this video, we'll look at Docker Compose, utilizing the sample Docker Voting App application.
Commands
docker container run --name redis redis
docker build -t voting-app .
docker container run -p 3000:80 --link redis:redis voting-app
docker container run -e POSTGRES_PASSWORD=postgres --name db postgres:9.4
docker build -t worker-app .
docker container run --link redis:redis --link db:db worker-app
docker build -t result-app .
docker container run -p 3001:80 --link db:db result-app
docker-compose up