-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yml
61 lines (55 loc) · 1.26 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
version: "2"
services:
mongo:
image: mongo:3.4
restart: always
container_name: mongo.local
hostname: mongo.local
ports:
- "27017:27017"
redis:
image: redis:alpine
restart: always
ports:
- "6379:6379"
keystone:
image: tuxmonteiro/keystone
restart: always
container_name: k1.local
hostname: k1.local
ports:
- "5000:5000"
- "35357:35357"
statsd:
image: tuxmonteiro/statsite
restart: always
ports:
- "8125:8125/udp"
environment:
- STREAM_CMD=/usr/bin/nodejs /bin/sinks/opentsdb.js opentsdb.local 4242 _t_
- STATSITE_FLUSH_INTERVAL=1
- USE_TYPE_PREFIX=0
volumes:
- /tmp:/tmp
links:
- opentsdb:opentsdb.local
opentsdb:
image: tuxmonteiro/opentsdb
restart: always
container_name: opentsdb.local
hostname: opentsdb.local
ports:
- "4242:4242"
- "60000:60000"
- "60010:60010"
- "60030:60030"
- "16010:16010"
grafana:
image: grafana/grafana
restart: always
environment:
- GF_SECURITY_ADMIN_PASSWORD=admin
ports:
- 3000:3000
links:
- opentsdb:opentsdb.local