forked from p2p-org/polkadot_monitoring_service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom-polkadot.yml
50 lines (47 loc) · 973 Bytes
/
custom-polkadot.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
version: '3.4'
services:
polkadot_common_exporter:
build:
context: ./exporters/common
args:
exporter: "common_exporter"
ports:
- 9161:9150
environment:
- "LISTEN=0.0.0.0"
- "PORT=9150"
- "CHAIN=${NETWORK}"
env_file:
- ./custom-polkadot.env
networks:
- exporters
- default
restart: unless-stopped
polkadot_finality_exporter:
build:
context: ./exporters/common
args:
exporter: "finality_exporter"
ports:
- 9162:9150
environment:
- "LISTEN=0.0.0.0"
- "PORT=9150"
- "CHAIN=${NETWORK}"
env_file:
- ./custom-polkadot.env
networks:
- exporters
- default
restart: unless-stopped
polkadot_events_exporter:
build:
context: ./exporters/events
ports:
- 9163:9150
networks:
- exporters
- default
env_file:
- ./custom-polkadot.env
restart: unless-stopped