-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
74 lines (65 loc) · 1.32 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
version: '2'
services:
# The Master Node
master:
image: quay.io/glint/glint-cluster-master:latest
ports:
- "45468:45468"
links:
- statsd
- rethinkdb
# A Worker Node
worker1:
image: quay.io/glint/glint-cluster-worker:latest
environment:
- MASTER_HOST_IP=master
links:
- master
- statsd
depends_on:
- master
# Another Worker Node
worker2:
image: quay.io/glint/glint-cluster-worker:latest
environment:
- MASTER_HOST_IP=master
links:
- master
depends_on:
- master
dashboard:
image: quay.io/glint/glint-dashboard:latest
links:
- rethinkdb
- master
# Our stats collector daemon
statsd:
image: quay.io/glint/glint-statsd:latest
links:
- carbon:graphite
ports:
- 8125:8125/udp
- 8126:8126
# UI to visualize the stats collected during runtime
graphite-web:
image: dockerana/graphite
links:
- carbon
ports:
- 8000:8000
volumes_from:
- carbon
# Graphite storage backend, used by both statsd and graphite-web
carbon:
image: dockerana/carbon
ports:
- 2003:2003
- 2004:2004
- 7002:7002
volumes:
- /opt/graphite
# Redis - Session Caching for Ravel
redis:
image: redis:3.2-alpine
rethinkdb:
image: rethinkdb: 2.3