-
Notifications
You must be signed in to change notification settings - Fork 11
/
docker-compose.yml
110 lines (101 loc) · 2.85 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
version: "2"
services:
iota:
image: iotaledger/iri:latest
container_name: iota
hostname: iota
restart: unless-stopped
volumes:
- ./volumes/iota/iota.ini:/iri/iota.ini:ro
- ./volumes/iota/ixi:/iri/ixi:rw
- ./volumes/iota/mainnetdb:/iri/mainnetdb:rw
- /etc/localtime:/etc/localtime:ro
ports:
- "14600:14600/udp"
- "15600:15600/tcp"
- "14265:14265"
nelson.cli:
image: romansemko/nelson.cli:latest
container_name: nelson.cli
hostname: nelson.cli
restart: unless-stopped
volumes:
- ./volumes/nelson/data:/data:rw
- ./volumes/nelson/config.ini:/home/node/config.ini:ro
- /etc/localtime:/etc/localtime:ro
command: "--config /home/node/config.ini"
ports:
- "18600:18600"
- "16600:16600"
nelson.mon:
image: ioiobzit/nelson.mon:0.0.2
container_name: nelson.mon
hostname: nelson.mon
restart: unless-stopped
ports:
- "3000:3000"
nelson.gui:
image: ioiobzit/nelson.gui:0.1.5
container_name: nelson.gui
hostname: nelson.gui
restart: unless-stopped
ports:
- "5000:5000"
prometheus:
image: prom/prometheus:latest
container_name: prometheus
hostname: prometheus
restart: unless-stopped
volumes:
- ./volumes/prometheus/data:/data
- ./volumes/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml
- /etc/localtime:/etc/localtime:ro
command:
- "--config.file=/etc/prometheus/prometheus.yml"
- "--storage.tsdb.path=/data"
- "--web.console.libraries=/usr/share/prometheus/console_libraries"
- "--web.console.templates=/usr/share/prometheus/consoles"
ports:
- "9090:9090"
links:
- iota-prom-exporter:iota-prom-exporter
- node-exporter:node-exporter
iota-prom-exporter:
image: ioiobzit/ipe:1.0.5
container_name: prom-iotaexp
hostname: iotape
restart: on-failure
ports:
- "9311:9311"
volumes:
- /etc/localtime:/etc/localtime:ro
node-exporter:
image: prom/node-exporter:latest
container_name: prom-nodeexp
hostname: node-exporter
restart: unless-stopped
volumes:
- /proc:/host/proc:ro
- /sys:/host/sys:ro
- /:/rootfs:ro
- /etc/localtime:/etc/localtime:ro
command:
- "--path.procfs=/host/proc"
- "--path.sysfs=/host/sys"
- "--collector.filesystem.ignored-mount-points"
- "^/(sys|proc|dev|host|etc|rootfs/var/lib/docker/containers|rootfs/var/lib/docker/overlay2|rootfs/var/lib/docker/aufs)($$|/)"
ports:
- "9100:9100"
grafana:
image: grafana/grafana
container_name: iota_grafana
restart: on-failure
ports:
- "8000:3000"
volumes:
- ./volumes/grafana:/var/lib/grafana
- /etc/localtime:/etc/localtime:ro
environment:
- GF_SERVER_PROTOCOL=http
links:
- prometheus:prometheus