cloudnet-compose/docker-compose.yml

55 lines
752 B
YAML
Raw Normal View History

version: "2"
services:
voting-app:
build: ./voting-app/.
volumes:
- ./voting-app:/app
ports:
- "5000:80"
links:
- redis
networks:
- front-tier
- back-tier
2015-11-15 20:59:29 +01:00
result-app:
build: ./result-app/.
volumes:
- ./result-app:/app
ports:
- "5001:80"
links:
- db
networks:
- front-tier
- back-tier
2015-11-15 20:59:29 +01:00
worker:
build: ./worker
links:
- db
- redis
networks:
- back-tier
redis:
image: redis:alpine
ports: ["6379"]
networks:
- back-tier
2015-11-15 20:59:29 +01:00
db:
image: postgres:9.4
volumes:
- "db-data:/var/lib/postgresql/data"
networks:
- back-tier
2015-11-15 20:59:29 +01:00
volumes:
db-data:
networks:
front-tier:
back-tier: