1
0
mirror of https://github.com/yldio/copilot.git synced 2024-09-21 05:43:52 +03:00
copilot/docker-compose.yml
2016-10-17 16:41:17 +01:00

33 lines
775 B
YAML

#############################################################################
# CONSUL
#############################################################################
consul:
image: progrium/consul:latest
labels:
- triton.cns.services=consul
restart: always
mem_limit: 128m
expose:
- 53
- 8300
- 8301
- 8302
- 8400
- 8500
env_file: .env
ports:
- 8500:8500
command: -server -bootstrap -ui-dir /ui
#############################################################################
# CloudAPI GraphQL
#############################################################################
cloudapi:
build: ./cloudapi-graphql
labels:
- triton.cns.services=cloudapi
env_file: .env
environment:
- PORT=3000
ports:
- 3000:3000