| 123456789101112131415161718192021222324252627282930313233 | db:  image: 'postgres:9.4'  restart: alwaysredis:  image: 'redis:latest'  restart: alwaysresult:  autoredeploy: true  image: 'docker/example-voting-app-result:latest'  ports:    - '80:80'  restart: alwayslb:  autoredeploy: true  image: 'dockercloud/haproxy:latest'  links:    - vote  ports:    - "80:80"  roles:    - global  restart: alwaysvote:  autoredeploy: true  image: 'docker/example-voting-app-vote:latest'  restart: always  target_num_containers: 5worker:  autoredeploy: true  image: 'docker/example-voting-app-worker:latest'  restart: always  target_num_containers: 3
 |