2017-06-29 17:29:54 +03:00
|
|
|
#############################################################################
|
|
|
|
# CONSUL
|
|
|
|
#
|
|
|
|
# Consul is the service catalog that helps discovery between the components
|
|
|
|
# Change "-bootstrap" to "-bootstrap-expect 3", then scale to 3 or more to
|
|
|
|
# turn this into an HA Consul raft.
|
|
|
|
#############################################################################
|
|
|
|
consul:
|
|
|
|
image: autopilotpattern/consul:0.7.2-r0.8
|
|
|
|
command: >
|
|
|
|
/usr/local/bin/containerpilot
|
|
|
|
/bin/consul agent -server
|
|
|
|
-config-dir=/etc/consul
|
2017-08-03 00:56:53 +03:00
|
|
|
-log-level=err
|
|
|
|
-bootstrap-expect 1
|
2017-06-29 17:29:54 +03:00
|
|
|
-ui-dir /ui
|
|
|
|
restart: always
|
|
|
|
mem_limit: 128m
|
|
|
|
labels:
|
|
|
|
- triton.cns.services=copilot-consul
|
2017-08-03 00:56:53 +03:00
|
|
|
ports:
|
|
|
|
- 8500:8500
|
2017-06-29 17:29:54 +03:00
|
|
|
dns:
|
|
|
|
- 127.0.0.1
|
|
|
|
|
|
|
|
#############################################################################
|
|
|
|
# PROMETHEUS
|
|
|
|
#
|
|
|
|
# Prometheus is an open source performance monitoring tool
|
|
|
|
# it is included here for demo purposes and is not required
|
|
|
|
#############################################################################
|
|
|
|
prometheus:
|
2017-08-03 00:56:53 +03:00
|
|
|
image: autopilotpattern/prometheus:1.7.1-r20
|
|
|
|
restart: always
|
|
|
|
mem_limit: 1g
|
|
|
|
ports:
|
|
|
|
- 9090:9090
|
2017-06-29 17:29:54 +03:00
|
|
|
labels:
|
|
|
|
# This label sets the CNS name, Triton's automatic DNS
|
|
|
|
# Learn more at https://docs.joyent.com/public-cloud/network/cns
|
|
|
|
- triton.cns.services=prometheus
|
|
|
|
# This label selects the proper Joyent resource package
|
|
|
|
# https://www.joyent.com/blog/optimizing-docker-on-triton#ram-cpu-and-disk-resources-for-your-containers
|
|
|
|
- com.joyent.package=g4-highcpu-1G
|
|
|
|
environment:
|
|
|
|
- CONSUL_AGENT=1
|
|
|
|
dns:
|
|
|
|
- 127.0.0.1
|
|
|
|
|
2017-08-03 00:56:53 +03:00
|
|
|
|
2017-06-29 17:29:54 +03:00
|
|
|
#############################################################################
|
|
|
|
# FRONTEND
|
|
|
|
#############################################################################
|
|
|
|
frontend:
|
2017-08-03 00:56:53 +03:00
|
|
|
image: joyent/copilot-frontend
|
|
|
|
mem_limit: 512m
|
|
|
|
env_file:
|
|
|
|
- _env
|
2017-06-29 17:29:54 +03:00
|
|
|
environment:
|
2017-08-03 00:56:53 +03:00
|
|
|
- PORT=443
|
2017-06-29 17:29:54 +03:00
|
|
|
ports:
|
2017-08-03 00:56:53 +03:00
|
|
|
- "80:80"
|
|
|
|
- "443:443"
|
|
|
|
dns:
|
|
|
|
- 127.0.0.1
|
2017-06-29 17:29:54 +03:00
|
|
|
|
|
|
|
|
|
|
|
#############################################################################
|
|
|
|
# BACKEND
|
|
|
|
#############################################################################
|
|
|
|
api:
|
2017-08-03 00:56:53 +03:00
|
|
|
image: joyent/copilot-api
|
|
|
|
mem_limit: 512m
|
2017-06-29 17:29:54 +03:00
|
|
|
links:
|
|
|
|
- rethinkdb:rethinkdb
|
|
|
|
env_file:
|
|
|
|
- _env
|
|
|
|
environment:
|
2017-08-03 00:56:53 +03:00
|
|
|
- PORT=3000
|
2017-06-29 17:29:54 +03:00
|
|
|
- RETHINK_HOST=rethinkdb
|
|
|
|
expose:
|
2017-08-03 00:56:53 +03:00
|
|
|
- 3000
|
2017-06-29 17:29:54 +03:00
|
|
|
|
|
|
|
# Docker-compose wrapper
|
|
|
|
# Create _env file from running ./setup.sh
|
2017-08-03 00:56:53 +03:00
|
|
|
compose-api:
|
|
|
|
image: joyent/copilot-compose
|
2017-06-29 17:29:54 +03:00
|
|
|
expose:
|
|
|
|
- 4242
|
|
|
|
env_file:
|
|
|
|
- _env
|
|
|
|
restart: always
|
|
|
|
|
|
|
|
rethinkdb:
|
|
|
|
image: rethinkdb
|
|
|
|
restart: always
|
|
|
|
mem_limit: 1g
|
2017-08-03 00:56:53 +03:00
|
|
|
labels:
|
|
|
|
- triton.cns.services=copilot-rethinkdb
|
2017-06-29 17:29:54 +03:00
|
|
|
ports:
|
2017-08-03 00:56:53 +03:00
|
|
|
- 8080:8080
|
2017-06-29 17:29:54 +03:00
|
|
|
expose:
|
|
|
|
- 28015
|
|
|
|
- 29015
|