648caa4dd4
This commit also includes the required format changes to ensure that we can push from docker compose. This means that we needed to update the docker-compose.yml files to version 2.0
29 lines
540 B
YAML
29 lines
540 B
YAML
version: '2'
|
|
services:
|
|
consul:
|
|
extends:
|
|
file: docker-compose.yml
|
|
service: consul
|
|
ports:
|
|
- 8500:8500
|
|
cloudapi:
|
|
extends:
|
|
file: docker-compose.yml
|
|
service: cloudapi
|
|
depends_on:
|
|
- consul
|
|
environment:
|
|
- PORT=3000
|
|
- ROOT_URL=http://localhost:3000
|
|
- CONSUL=consul
|
|
backend:
|
|
extends:
|
|
file: docker-compose.yml
|
|
service: backend
|
|
depends_on:
|
|
- consul
|
|
environment:
|
|
- PORT=8000
|
|
- ROOT_URL=http://localhost:8000
|
|
- CONSUL=consul
|