forked from grafana-cold-storage/metrictank
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
51 lines (46 loc) · 1.05 KB
/
Copy pathdocker-compose.yml
File metadata and controls
51 lines (46 loc) · 1.05 KB
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
version: '2'
services:
metrictank:
hostname: metrictank
image: raintank/metrictank
ports:
- "6060:6060"
- "2003:2003"
volumes:
- ../../build/metrictank:/usr/bin/metrictank
- ../../scripts/config/metrictank-docker.ini:/etc/raintank/metrictank.ini
environment:
WAIT_HOSTS: cassandra:9042
WAIT_TIMEOUT: 60
links:
- cassandra
cassandra:
hostname: cassandra
image: cassandra:3.0.8
environment:
MAX_HEAP_SIZE: 1G
HEAP_NEWSIZE: 256M
ports:
- "9042:9042"
graphite-api:
hostname: graphite-api
image: raintank/graphite-metrictank
ports:
- "8080:8080"
links:
- metrictank
- statsdaemon
volumes:
- "../graphite-metrictank.yaml:/etc/graphite-metrictank/graphite-metrictank.yaml"
grafana:
hostname: grafana
image: grafana/grafana
ports:
- "3000:3000"
statsdaemon:
hostname: statsdaemon
image: raintank/statsdaemon
ports:
- "8125:8125/udp"
volumes:
- "../statsdaemon.ini:/etc/statsdaemon.ini"