This repository has been archived by the owner on Nov 15, 2022. It is now read-only.
forked from Consensys/besu-sample-networks
-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose_permissioning_poa.yml
199 lines (184 loc) · 5.68 KB
/
docker-compose_permissioning_poa.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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
---
version: '3.4'
services:
bootnode:
build:
context: besu/.
args:
BESU_VERSION: ${BESU_VERSION}
image: sample-network/besu:${BESU_VERSION}
environment:
- BESU_PUBLIC_KEY_DIRECTORY=${BESU_PUBLIC_KEY_DIRECTORY}
entrypoint: /opt/besu/bootnode_start.sh
command: &base_options [
"--config-file=/config/config.toml",
"--genesis-file=/config/genesis.json",
"--node-private-key-file=/opt/besu/keys/key",
"--min-gas-price=0",
"--rpc-http-api=WEB3,ETH,NET,IBFT,ADMIN,PERM",
"--rpc-ws-api=WEB3,ETH,NET,IBFT,ADMIN,PERM",
"--permissions-accounts-contract-enabled=${PERMISSIONING_ENABLED}",
"--permissions-accounts-contract-address=0x0000000000000000000000000000000000008888",
"--permissions-nodes-contract-enabled=${PERMISSIONING_ENABLED}",
"--permissions-nodes-contract-address=0x0000000000000000000000000000000000009999",
"--min-gas-price=0"
]
volumes:
- public-keys:${BESU_PUBLIC_KEY_DIRECTORY}
- ./config/besu/config.toml:/config/config.toml
- ./config/besu/ibft2GenesisPermissioning.json:/config/genesis.json
- ./config/besu/networkFiles/bootnode/keys:/opt/besu/keys
- bootnode:/opt/besu/data
networks:
sample:
ipv4_address: 172.24.2.5
validator2:
image: sample-network/besu:${BESU_VERSION}
environment:
- BESU_PUBLIC_KEY_DIRECTORY=${BESU_PUBLIC_KEY_DIRECTORY}
command: *base_options
volumes:
- public-keys:${BESU_PUBLIC_KEY_DIRECTORY}
- ./config/besu/config.toml:/config/config.toml
- ./config/besu/ibft2GenesisPermissioning.json:/config/genesis.json
- ./config/besu/networkFiles/validator2/keys:/opt/besu/keys
- validator2:/opt/besu/data
depends_on:
- bootnode
networks:
sample:
ipv4_address: 172.24.2.6
validator3:
image: sample-network/besu:${BESU_VERSION}
environment:
- BESU_PUBLIC_KEY_DIRECTORY=${BESU_PUBLIC_KEY_DIRECTORY}
command: *base_options
volumes:
- public-keys:${BESU_PUBLIC_KEY_DIRECTORY}
- ./config/besu/config.toml:/config/config.toml
- ./config/besu/ibft2GenesisPermissioning.json:/config/genesis.json
- ./config/besu/networkFiles/validator3/keys:/opt/besu/keys
- validator3:/opt/besu/data
depends_on:
- bootnode
networks:
sample:
ipv4_address: 172.24.2.7
validator4:
image: sample-network/besu:${BESU_VERSION}
environment:
- BESU_PUBLIC_KEY_DIRECTORY=${BESU_PUBLIC_KEY_DIRECTORY}
command: *base_options
volumes:
- public-keys:${BESU_PUBLIC_KEY_DIRECTORY}
- ./config/besu/config.toml:/config/config.toml
- ./config/besu/ibft2GenesisPermissioning.json:/config/genesis.json
- ./config/besu/networkFiles/validator4/keys:/opt/besu/keys
- validator4:/opt/besu/data
depends_on:
- bootnode
networks:
sample:
ipv4_address: 172.24.2.8
rpcnode: # We keep one node named rpcnode to have a specific node to connect the explorer
image: sample-network/besu:${BESU_VERSION}
environment:
- BESU_PUBLIC_KEY_DIRECTORY=${BESU_PUBLIC_KEY_DIRECTORY}
command: *base_options
volumes:
- public-keys:${BESU_PUBLIC_KEY_DIRECTORY}
- ./config/besu/config.toml:/config/config.toml
- ./config/besu/ibft2GenesisPermissioning.json:/config/genesis.json
- ./config/besu/networkFiles/rpcnode/keys:/opt/besu/keys
- rpcnode:/opt/besu/data
depends_on:
- bootnode
ports:
- 8545:8545/tcp
networks:
sample:
ipv4_address: 172.24.2.9
node1:
image: sample-network/besu:${BESU_VERSION}
environment:
- BESU_PUBLIC_KEY_DIRECTORY=${BESU_PUBLIC_KEY_DIRECTORY}
command: *base_options
volumes:
- public-keys:${BESU_PUBLIC_KEY_DIRECTORY}
- ./config/besu/config.toml:/config/config.toml
- ./config/besu/ibft2GenesisPermissioning.json:/config/genesis.json
- ./config/besu/networkFiles/node1/keys:/opt/besu/keys
- node1:/opt/besu/data
depends_on:
- bootnode
networks:
sample:
ipv4_address: 172.24.2.11
node2:
image: sample-network/besu:${BESU_VERSION}
environment:
- BESU_PUBLIC_KEY_DIRECTORY=${BESU_PUBLIC_KEY_DIRECTORY}
command: *base_options
volumes:
- public-keys:${BESU_PUBLIC_KEY_DIRECTORY}
- ./config/besu/config.toml:/config/config.toml
- ./config/besu/ibft2GenesisPermissioning.json:/config/genesis.json
- ./config/besu/networkFiles/node2/keys:/opt/besu/keys
- node2:/opt/besu/data
depends_on:
- bootnode
networks:
sample:
ipv4_address: 172.24.2.12
explorer:
build: block-explorer-light/.
image: sample-network/block-explorer-light:${BESU_VERSION}
depends_on:
- rpcnode
ports:
- 25000:80/tcp
networks:
sample:
ipv4_address: 172.24.2.15
prometheus:
image: "prom/prometheus"
volumes:
- ./monitoring/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml
- prometheus:/prometheus
command:
- --config.file=/etc/prometheus/prometheus.yml
ports:
- 9090:9090/tcp
networks:
sample:
ipv4_address: 172.24.2.16
grafana:
image: "grafana/grafana"
environment:
- GF_AUTH_ANONYMOUS_ENABLED=true
volumes:
- ./monitoring/grafana/provisioning/:/etc/grafana/provisioning/
- grafana:/var/lib/grafana
ports:
- 3000:3000/tcp
networks:
sample:
ipv4_address: 172.24.2.17
volumes:
public-keys:
prometheus:
grafana:
bootnode:
validator1:
validator2:
validator3:
validator4:
rpcnode:
node1:
node2:
networks:
sample:
driver: bridge
ipam:
config:
- subnet: 172.24.2.0/27