1
- # This docker compose is setting up the full ZKMintlayer network, consisting of:
1
+ # This docker compose is setting up the full zkthunder network, consisting of:
2
2
#
3
3
# - L1 (private reth) with explorer (blockscout)
4
4
# - a single postgres (with all the databases)
5
5
# - a ipfs node
6
- # - L2 zkmintlayer chain, together with its explorer
6
+ # - L2 zkthunder chain, together with its explorer
7
7
# - hyperexplorer to merge L1, L2 all together.
8
8
9
9
# Ports (if a port is written in the form http://localhost:PORT, it means that it can be accessed from the other machine):
17
17
# - http://localhost:15002 -
18
18
# - http://localhost:15003 -
19
19
20
- # - L2 chain (zkmintlayer ):
20
+ # - L2 chain (zkthunder ):
21
21
# - http://localhost:15100 - http rpc
22
22
# - http://localhost:15101 - ws rpc
23
23
# - L2 explorer:
30
30
# Database is on 15432
31
31
# pgAdmin to manage PostgreSQL DB is on 15430
32
32
33
- # Besides, mintlayer rpc is on 13034/3034, change this in the zkmintlayer service if needed.
33
+ # Besides, mintlayer rpc is on 13034/3034, change this in the zkthunder service if needed.
34
34
35
35
services :
36
36
reth :
@@ -90,18 +90,18 @@ services:
90
90
POSTGRES_PORT : 5432
91
91
restart : unless-stopped
92
92
93
- # zkmintlayer
93
+ # zkthunder
94
94
proxy-relay :
95
95
image : alpine/socat:latest
96
96
network_mode : host
97
97
command : TCP-LISTEN:13034,fork,bind=host.docker.internal TCP-CONNECT:127.0.0.1:13034
98
98
extra_hosts :
99
99
- host.docker.internal:host-gateway
100
100
101
- zkmintlayer :
101
+ zkthunder :
102
102
stdin_open : true
103
103
tty : true
104
- image : matterlabs/local-node:${INSTANCE_TYPE:-zkmintlayer }
104
+ image : matterlabs/local-node:${INSTANCE_TYPE:-zkthunder }
105
105
healthcheck :
106
106
test : curl --fail http://localhost:3071/health || exit 1
107
107
interval : 10s
@@ -118,7 +118,7 @@ services:
118
118
- ML_BATCH_SIZE=10 # change if necessary
119
119
- 4EVERLAND_API_KEY=5F2R8SK2EQNSNCHSRWIK # only for test
120
120
- 4EVERLAND_SECRET_KEY=sCGfIdQZfis8YVCXnQP53SL8cPdRxyzjPLh1KYmF # only for test
121
- - 4EVERLAND_BUCKET_NAME=zkmintlayer # only for test
121
+ - 4EVERLAND_BUCKET_NAME=zkthunder # only for test
122
122
ports :
123
123
- 15100:3050 # JSON RPC HTTP port
124
124
- 15101:3051 # JSON RPC WS port
@@ -139,7 +139,7 @@ services:
139
139
environment :
140
140
- PORT=3040
141
141
- LOG_LEVEL=verbose
142
- - BLOCKCHAIN_RPC_URL=http://zkmintlayer :3050
142
+ - BLOCKCHAIN_RPC_URL=http://zkthunder :3050
143
143
ports :
144
144
- 127.0.0.1:15104:3040
145
145
restart : unless-stopped
@@ -155,7 +155,7 @@ services:
155
155
- DATABASE_USER=postgres
156
156
- DATABASE_PASSWORD=notsecurepassword
157
157
- DATABASE_NAME=block-explorer
158
- - BLOCKCHAIN_RPC_URL=http://zkmintlayer :3050
158
+ - BLOCKCHAIN_RPC_URL=http://zkthunder :3050
159
159
- DATA_FETCHER_URL=http://data-fetcher-main:3040
160
160
- BATCHES_PROCESSING_POLLING_INTERVAL=1000
161
161
ports :
@@ -264,7 +264,7 @@ services:
264
264
265
265
hyperexplorer :
266
266
depends_on :
267
- zkmintlayer :
267
+ zkthunder :
268
268
condition : service_healthy
269
269
image : ghcr.io/mm-zk/zksync_tools:latest
270
270
ports :
0 commit comments