2016-10-14 13:57:26 +03:00
|
|
|
consul:
|
|
|
|
extends:
|
|
|
|
file: docker-compose.yml
|
|
|
|
service: consul
|
|
|
|
ports:
|
|
|
|
- 8500:8500
|
2016-10-17 18:41:17 +03:00
|
|
|
cloudapi:
|
|
|
|
extends:
|
|
|
|
file: docker-compose.yml
|
|
|
|
service: cloudapi
|
|
|
|
links:
|
|
|
|
- consul:consul
|
|
|
|
environment:
|
|
|
|
- PORT=3000
|
|
|
|
- ROOT_URL=http://localhost:3000
|
|
|
|
- CONSUL=consul
|
2016-10-20 15:36:24 +03:00
|
|
|
backend:
|
|
|
|
extends:
|
|
|
|
file: docker-compose.yml
|
|
|
|
service: backend
|
|
|
|
links:
|
|
|
|
- consul:consul
|
|
|
|
environment:
|
|
|
|
- PORT=8000
|
|
|
|
- ROOT_URL=http://localhost:8000
|
|
|
|
- CONSUL=consul
|