-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
53 lines (48 loc) · 1.08 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
version: '3'
services:
riemann:
image: rhomewood/riemann
#build:
#context: .
#dockerfile: Dockerfile
networks:
- monitoring
ports:
- '5555:5555/tcp'
- '5555:5555/udp'
- '5556:5556'
volumes:
- ./riemann/data/etc:/app/etc
graphite:
image: sitespeedio/graphite
networks:
monitoring:
aliases:
- database
ports:
- "8080:80"
- "2003:2003"
volumes:
- ./graphite/data/htpass/.htpasswd:/etc/nginx/.htpasswd
- ./graphite/data/whisper:/opt/graphite/storage/whisper
- ./graphite/data/logrotate.d:/etc/logrotate.d
- ./graphite/data/log:/var/log
grafana:
image: monitoringartist/grafana-xxl
environment:
GRAFANA_VERSION: "4.4.1"
networks:
monitoring:
aliases:
- display
ports:
- "3000:3000"
volumes:
- grafana-plugins:/grafana-plugins
- ./grafana/data:/var/lib/grafana
- ./grafana/logs:/var/log/grafana
- ./grafana/config:/etc/grafana
networks:
monitoring:
volumes:
grafana-plugins: