This repository has been archived by the owner on Oct 4, 2023. It is now read-only.
forked from drr00t/parity-poa-playground
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
107 lines (95 loc) · 2.17 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
version: '3'
services:
alice:
image: kryha/parity:beta
command:
--config /parity/config/alice.toml
--unsafe-expose
volumes:
- ./parity/config:/parity/config
ports:
- 8180:8180
- 8546:8546
- 8545:8545
networks:
eth-net:
ipv4_address: '10.1.0.11'
bob:
image: kryha/parity:beta
command: --config /parity/config/bob.toml
--unsafe-expose
volumes:
- ./parity/config:/parity/config
ports:
- 8544:8545
networks:
eth-net:
ipv4_address: '10.1.0.12'
charlie:
image: kryha/parity:beta
command: --config /parity/config/charlie.toml
--unsafe-expose
volumes:
- ./parity/config:/parity/config
ports:
- 8543:8545
networks:
eth-net:
ipv4_address: '10.1.0.13'
ss1:
image: kryha/parity:secretstore
command:
--config /parity/config/secret/ss1.toml
--ws-interface 0.0.0.0
--unsafe-expose
volumes:
- ./parity/config:/parity/config
ports:
- 8010:8010
networks:
eth-net:
ipv4_address: '10.1.0.21'
ss2:
image: kryha/parity:secretstore
command:
--config /parity/config/secret/ss2.toml
--ws-interface 0.0.0.0
--unsafe-expose
volumes:
- ./parity/config:/parity/config
networks:
eth-net:
ipv4_address: '10.1.0.22'
ss3:
image: kryha/parity:secretstore
command:
--config /parity/config/secret/ss3.toml
--ws-interface 0.0.0.0
--unsafe-expose
volumes:
- ./parity/config:/parity/config
networks:
eth-net:
ipv4_address: '10.1.0.23'
monitor:
image: buythewhale/ethstats_monitor
volumes:
- ./monitor/app.json:/home/ethnetintel/eth-net-intelligence-api/app.json
networks:
eth-net:
ipv4_address: '10.1.0.100'
dashboard:
image: buythewhale/ethstats
volumes:
- ./dashboard/ws_secret.json:/eth-netstats/ws_secret.json
ports:
- 3001:3000
networks:
eth-net:
ipv4_address: '10.1.0.200'
networks:
eth-net:
ipam:
driver: default
config:
- subnet: 10.1.0.0/24