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_privacy_poa.yml
233 lines (216 loc) · 7.9 KB
/
docker-compose_privacy_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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
---
version: '3.4'
services:
orion1:
image: "pegasyseng/orion:develop"
environment:
- ORION_OTHERNODES=http://orion2:8080/,http://orion3:8080/
- ORION_NODEURL=http://orion1:8080
- ORION_CLIENTURL=http://orion1:8888
command: ["/config/orion.conf"]
volumes:
- ./config/orion/orion.conf:/config/orion.conf
- ./config/orion/networkFiles/orion1:/keys/
orion2:
image: "pegasyseng/orion:develop"
environment:
- ORION_OTHERNODES=http://orion1:8080/,http://orion3:8080/
- ORION_NODEURL=http://orion2:8080
- ORION_CLIENTURL=http://orion2:8888
command: ["/config/orion.conf"]
volumes:
- ./config/orion/orion.conf:/config/orion.conf
- ./config/orion/networkFiles/orion2:/keys/
orion3:
image: "pegasyseng/orion:develop"
environment:
- ORION_OTHERNODES=http://orion2:8080/,http://orion1:8080/
- ORION_NODEURL=http://orion3:8080
- ORION_CLIENTURL=http://orion3:8888
command: ["/config/orion.conf"]
volumes:
- ./config/orion/orion.conf:/config/orion.conf
- ./config/orion/networkFiles/orion3:/keys/
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=EEA,WEB3,ETH,NET,PRIV,${SAMPLE_POA_API-ibft}",
"--rpc-ws-api=EEA,WEB3,ETH,NET,PRIV,${SAMPLE_POA_API-ibft}",
"--privacy-onchain-groups-enabled=${PRIVACY_ONCHAIN_GROUPS_ENABLED}",
"--min-gas-price=0"]
volumes:
- public-keys:${BESU_PUBLIC_KEY_DIRECTORY}
- ./config/besu/config.toml:/config/config.toml
- ./config/besu/${SAMPLE_POA_NAME-ibft2}Genesis.json:/config/genesis.json
- ./config/besu/networkFiles/bootnode/keys:/opt/besu/keys
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/${SAMPLE_POA_NAME-ibft2}Genesis.json:/config/genesis.json
- ./config/besu/networkFiles/validator2/keys:/opt/besu/keys
depends_on:
- bootnode
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/${SAMPLE_POA_NAME-ibft2}Genesis.json:/config/genesis.json
- ./config/besu/networkFiles/validator3/keys:/opt/besu/keys
depends_on:
- bootnode
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/${SAMPLE_POA_NAME-ibft2}Genesis.json:/config/genesis.json
- ./config/besu/networkFiles/validator4/keys:/opt/besu/keys
depends_on:
- bootnode
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/${SAMPLE_POA_NAME-ibft2}Genesis.json:/config/genesis.json
- ./config/besu/networkFiles/rpcnode/keys:/opt/besu/keys
depends_on:
- bootnode
ports:
- 8545:8545/tcp
node1:
image: sample-network/besu:${BESU_VERSION}
environment:
- BESU_PUBLIC_KEY_DIRECTORY=${BESU_PUBLIC_KEY_DIRECTORY}
command: [
"--config-file=/config/config.toml",
"--genesis-file=/config/genesis.json",
"--node-private-key-file=/opt/besu/keys/key",
"--rpc-http-api=EEA,WEB3,ETH,NET,PRIV,${SAMPLE_POA_API-ibft}",
"--rpc-ws-api=EEA,WEB3,ETH,NET,PRIV,${SAMPLE_POA_API-ibft}",
"--min-gas-price=0",
"--privacy-enabled",
"--privacy-url=http://orion1:8888",
"--privacy-public-key-file=/config/orion/orion.pub",
"--privacy-onchain-groups-enabled=${PRIVACY_ONCHAIN_GROUPS_ENABLED}"]
volumes:
- public-keys:${BESU_PUBLIC_KEY_DIRECTORY}
- ./config/besu/config.toml:/config/config.toml
- ./config/besu/${SAMPLE_POA_NAME-ibft2}Genesis.json:/config/genesis.json
- ./config/besu/networkFiles/node1/keys:/opt/besu/keys
- ./config/orion/networkFiles/orion1/nodeKey.pub:/config/orion/orion.pub
depends_on:
- bootnode
- orion1
ports:
- 20000:8545/tcp
- 20001:8546/tcp
node2:
image: sample-network/besu:${BESU_VERSION}
environment:
- BESU_PUBLIC_KEY_DIRECTORY=${BESU_PUBLIC_KEY_DIRECTORY}
command: [
"--config-file=/config/config.toml",
"--genesis-file=/config/genesis.json",
"--node-private-key-file=/opt/besu/keys/key",
"--rpc-http-api=EEA,WEB3,ETH,NET,PRIV,${SAMPLE_POA_API-ibft}",
"--rpc-ws-api=EEA,WEB3,ETH,NET,PRIV,${SAMPLE_POA_API-ibft}",
"--min-gas-price=0",
"--privacy-enabled",
"--privacy-url=http://orion2:8888",
"--privacy-public-key-file=/config/orion/orion.pub",
"--privacy-onchain-groups-enabled=${PRIVACY_ONCHAIN_GROUPS_ENABLED}"]
volumes:
- public-keys:${BESU_PUBLIC_KEY_DIRECTORY}
- ./config/besu/config.toml:/config/config.toml
- ./config/besu/${SAMPLE_POA_NAME-ibft2}Genesis.json:/config/genesis.json
- ./config/besu/networkFiles/node2/keys:/opt/besu/keys
- ./config/orion/networkFiles/orion2/nodeKey.pub:/config/orion/orion.pub
depends_on:
- bootnode
- orion2
ports:
- 20002:8545/tcp
- 20003:8546/tcp
node3:
image: sample-network/besu:${BESU_VERSION}
environment:
- BESU_PUBLIC_KEY_DIRECTORY=${BESU_PUBLIC_KEY_DIRECTORY}
command: [
"--config-file=/config/config.toml",
"--genesis-file=/config/genesis.json",
"--node-private-key-file=/opt/besu/keys/key",
"--rpc-http-api=EEA,WEB3,ETH,NET,PRIV,${SAMPLE_POA_API-ibft}",
"--rpc-ws-api=EEA,WEB3,ETH,NET,PRIV,${SAMPLE_POA_API-ibft}",
"--min-gas-price=0",
"--privacy-enabled",
"--privacy-url=http://orion3:8888",
"--privacy-public-key-file=/config/orion/orion.pub",
"--privacy-onchain-groups-enabled=${PRIVACY_ONCHAIN_GROUPS_ENABLED}"]
volumes:
- public-keys:${BESU_PUBLIC_KEY_DIRECTORY}
- ./config/besu/config.toml:/config/config.toml
- ./config/besu/${SAMPLE_POA_NAME-ibft2}Genesis.json:/config/genesis.json
- ./config/besu/networkFiles/node3/keys:/opt/besu/keys
- ./config/orion/networkFiles/orion3/nodeKey.pub:/config/orion/orion.pub
depends_on:
- bootnode
- orion3
ports:
- 20004:8545/tcp
- 20005:8546/tcp
explorer:
build: block-explorer-light/.
image: sample-network/block-explorer-light:${BESU_VERSION}
depends_on:
- rpcnode
ports:
- 25000:80/tcp
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
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
volumes:
public-keys:
prometheus:
grafana: