joyent-portal/local-compose.yml
Tom Gallacher 648caa4dd4 deploy: add docker login
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
2016-10-20 16:58:09 +01:00

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