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:
22#
33# - L1 (private reth) with explorer (blockscout)
44# - a single postgres (with all the databases)
55# - a ipfs node
6- # - L2 zkmintlayer chain, together with its explorer
6+ # - L2 zkthunder chain, together with its explorer
77# - hyperexplorer to merge L1, L2 all together.
88
99# Ports (if a port is written in the form http://localhost:PORT, it means that it can be accessed from the other machine):
1717# - http://localhost:15002 -
1818# - http://localhost:15003 -
1919
20- # - L2 chain (zkmintlayer ):
20+ # - L2 chain (zkthunder ):
2121# - http://localhost:15100 - http rpc
2222# - http://localhost:15101 - ws rpc
2323# - L2 explorer:
3030# Database is on 15432
3131# pgAdmin to manage PostgreSQL DB is on 15430
3232
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.
3434
3535services :
3636 reth :
@@ -90,18 +90,18 @@ services:
9090 POSTGRES_PORT : 5432
9191 restart : unless-stopped
9292
93- # zkmintlayer
93+ # zkthunder
9494 proxy-relay :
9595 image : alpine/socat:latest
9696 network_mode : host
9797 command : TCP-LISTEN:13034,fork,bind=host.docker.internal TCP-CONNECT:127.0.0.1:13034
9898 extra_hosts :
9999 - host.docker.internal:host-gateway
100100
101- zkmintlayer :
101+ zkthunder :
102102 stdin_open : true
103103 tty : true
104- image : matterlabs/local-node:${INSTANCE_TYPE:-zkmintlayer }
104+ image : matterlabs/local-node:${INSTANCE_TYPE:-zkthunder }
105105 healthcheck :
106106 test : curl --fail http://localhost:3071/health || exit 1
107107 interval : 10s
@@ -118,7 +118,7 @@ services:
118118 - ML_BATCH_SIZE=10 # change if necessary
119119 - 4EVERLAND_API_KEY=5F2R8SK2EQNSNCHSRWIK # only for test
120120 - 4EVERLAND_SECRET_KEY=sCGfIdQZfis8YVCXnQP53SL8cPdRxyzjPLh1KYmF # only for test
121- - 4EVERLAND_BUCKET_NAME=zkmintlayer # only for test
121+ - 4EVERLAND_BUCKET_NAME=zkthunder # only for test
122122 ports :
123123 - 15100:3050 # JSON RPC HTTP port
124124 - 15101:3051 # JSON RPC WS port
@@ -139,7 +139,7 @@ services:
139139 environment :
140140 - PORT=3040
141141 - LOG_LEVEL=verbose
142- - BLOCKCHAIN_RPC_URL=http://zkmintlayer :3050
142+ - BLOCKCHAIN_RPC_URL=http://zkthunder :3050
143143 ports :
144144 - 127.0.0.1:15104:3040
145145 restart : unless-stopped
@@ -155,7 +155,7 @@ services:
155155 - DATABASE_USER=postgres
156156 - DATABASE_PASSWORD=notsecurepassword
157157 - DATABASE_NAME=block-explorer
158- - BLOCKCHAIN_RPC_URL=http://zkmintlayer :3050
158+ - BLOCKCHAIN_RPC_URL=http://zkthunder :3050
159159 - DATA_FETCHER_URL=http://data-fetcher-main:3040
160160 - BATCHES_PROCESSING_POLLING_INTERVAL=1000
161161 ports :
@@ -264,7 +264,7 @@ services:
264264
265265 hyperexplorer :
266266 depends_on :
267- zkmintlayer :
267+ zkthunder :
268268 condition : service_healthy
269269 image : ghcr.io/mm-zk/zksync_tools:latest
270270 ports :
0 commit comments