-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
137 lines (137 loc) Β· 3.35 KB
/
Copy pathdocker-compose.yml
File metadata and controls
137 lines (137 loc) Β· 3.35 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
services:
validator-0:
hostname: validator-0
image: ghcr.io/boostryjp/ibet-localnet/validator:v2.5.0
volumes:
- /home/ubuntu/quorum_data/v0:/eth
environment:
- PRIVATE_CONFIG=ignore
- rpccorsdomain=*
- rpcvhosts=*
- maxpeers=*
- nodekeyhex='2ad84f0c2e0b87137bd91a2aee2b28cc0bc7eba38922d752bb080d5b4fa34506'
- identity='validator-0'
- testQBFTBlock=4
- berlinBlock=4
- emptyBlockPeriodIntroduceBlock=5
- cache=1024
- verbosity=3
- metrics=1
ports:
- '30303:30303'
- '8545:8545'
- '6060:6060'
networks:
app_net:
ipv4_address: 172.16.239.10
restart: always
validator-1:
hostname: validator-1
image: ghcr.io/boostryjp/ibet-localnet/validator:v2.5.0
volumes:
- /home/ubuntu/quorum_data/v1:/eth
environment:
- PRIVATE_CONFIG=ignore
- rpccorsdomain=*
- rpcvhosts=*
- maxpeers=*
- nodekeyhex='844d84c4af13a753eea5528941d7b17d14796717a7a491830bda49af2662c725'
- identity='validator-1'
- testQBFTBlock=4
- berlinBlock=4
- emptyBlockPeriodIntroduceBlock=5
- cache=1024
- verbosity=3
- metrics=1
ports:
- '30304:30303'
- '8546:8545'
- '6061:6060'
networks:
app_net:
ipv4_address: 172.16.239.11
restart: always
validator-2:
hostname: validator-2
image: ghcr.io/boostryjp/ibet-localnet/validator:v2.5.0
volumes:
- /home/ubuntu/quorum_data/v2:/eth
environment:
- PRIVATE_CONFIG=ignore
- rpccorsdomain=*
- rpcvhosts=*
- maxpeers=*
- nodekeyhex='9fa7eb5f2588d4fd510aabfacbf99f2e0a9bca56c75b8ea66c511b7850d5d1be'
- identity='validator-2'
- testQBFTBlock=4
- berlinBlock=4
- emptyBlockPeriodIntroduceBlock=5
- cache=1024
- verbosity=3
- metrics=1
ports:
- '30305:30303'
- '8547:8545'
- '6062:6060'
networks:
app_net:
ipv4_address: 172.16.239.12
restart: always
validator-3:
hostname: validator-3
image: ghcr.io/boostryjp/ibet-localnet/validator:v2.5.0
volumes:
- /home/ubuntu/quorum_data/v3:/eth
environment:
- PRIVATE_CONFIG=ignore
- rpccorsdomain=*
- rpcvhosts=*
- maxpeers=*
- nodekeyhex='13fe4f966e610ff5ac67965d02fd63a5883c6932a4faa1d2ca974f9e9595adc4'
- identity='validator-3'
- testQBFTBlock=4
- berlinBlock=4
- emptyBlockPeriodIntroduceBlock=5
- cache=1024
- verbosity=3
- metrics=1
ports:
- '30306:30303'
- '8548:8545'
- '6063:6060'
networks:
app_net:
ipv4_address: 172.16.239.13
restart: always
general-0:
hostname: general-0
image: ghcr.io/boostryjp/ibet-localnet/general:v2.5.0
volumes:
- /home/ubuntu/quorum_data/g0:/eth
environment:
- PRIVATE_CONFIG=ignore
- rpccorsdomain=*
- rpcvhosts=*
- maxpeers=*
- identity='general-0'
- testQBFTBlock=4
- berlinBlock=4
- syncmode=snap
- cache=2048
- verbosity=3
- metrics=1
ports:
- '30307:30303'
- '8549:8545'
- '6064:6060'
networks:
app_net:
ipv4_address: 172.16.239.14
restart: always
networks:
app_net:
driver: bridge
ipam:
driver: default
config:
- subnet: 172.16.239.0/24