2016-10-20 19:47:37 +03:00
|
|
|
consul:
|
|
|
|
extends:
|
|
|
|
file: docker-compose.yml
|
|
|
|
service: consul
|
|
|
|
ports:
|
|
|
|
- 8500:8500
|
|
|
|
cloudapi:
|
|
|
|
extends:
|
|
|
|
file: docker-compose.yml
|
|
|
|
service: cloudapi
|
2016-10-21 13:50:37 +03:00
|
|
|
build: ./cloudapi-graphql
|
2016-10-20 19:47:37 +03:00
|
|
|
links:
|
|
|
|
- consul:consul
|
|
|
|
environment:
|
|
|
|
- PORT=3000
|
|
|
|
- ROOT_URL=http://localhost:3000
|
|
|
|
- CONSUL=consul
|
|
|
|
backend:
|
|
|
|
extends:
|
|
|
|
file: docker-compose.yml
|
|
|
|
service: backend
|
|
|
|
links:
|
|
|
|
- consul:consul
|
|
|
|
environment:
|
|
|
|
- PORT=8000
|
|
|
|
- ROOT_URL=http://localhost:8000
|
|
|
|
- CONSUL=consul
|