Skip to content

Commit 7a4ff8e

Browse files
authored
fix: update example external-node docker-compose.yml (#4482)
## What ❔ - update outdated docker-copose.yml ## Why ❔ - old version - missing gateway url ## Is this a breaking change? - [ ] Yes - [x] No ## Operational changes <!-- Any config changes? Any new flags? Any changes to any scripts? --> <!-- Please add anything that non-Matter Labs entities running their own ZK Chain may need to know --> ## Checklist <!-- Check your PR fulfills the following items. --> <!-- For draft PRs check the boxes as you complete them. --> - [x] PR title corresponds to the body of PR (we generate changelog entries from PRs). - [ ] Tests for the changes have been added / updated. - [x] Documentation comments have been added / updated. - [ ] Code has been formatted via `zkstack dev fmt` and `zkstack dev lint`.
1 parent cc0a95b commit 7a4ff8e

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

docs/src/guides/external-node/docker-compose-examples/mainnet-external-node-docker-compose.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ services:
5252
# Generation of consensus secrets.
5353
# The secrets are generated iff the secrets file doesn't already exist.
5454
generate-secrets:
55-
image: "matterlabs/external-node:2.0-v28.2.1"
55+
image: "matterlabs/external-node:v29.1.2"
5656
entrypoint:
5757
[
5858
"/configs/generate_secrets.sh",
@@ -61,7 +61,7 @@ services:
6161
volumes:
6262
- ./configs:/configs
6363
external-node:
64-
image: "matterlabs/external-node:2.0-v28.2.1"
64+
image: "matterlabs/external-node:v29.1.2"
6565
entrypoint:
6666
[
6767
"/usr/bin/entrypoint.sh",
@@ -94,6 +94,7 @@ services:
9494
EN_PROMETHEUS_PORT: 3322
9595
EN_ETH_CLIENT_URL: https://ethereum-rpc.publicnode.com
9696
EN_MAIN_NODE_URL: https://zksync2-mainnet.zksync.io
97+
EN_GATEWAY_URL: https://rpc.era-gateway-mainnet.zksync.dev
9798
EN_L1_CHAIN_ID: 1
9899
EN_L2_CHAIN_ID: 324
99100
EN_PRUNING_ENABLED: true

docs/src/guides/external-node/docker-compose-examples/testnet-external-node-docker-compose.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ services:
5252
# Generation of consensus secrets.
5353
# The secrets are generated iff the secrets file doesn't already exist.
5454
generate-secrets:
55-
image: "matterlabs/external-node:2.0-v28.2.1"
55+
image: "matterlabs/external-node:v29.1.2"
5656
entrypoint:
5757
[
5858
"/configs/generate_secrets.sh",
@@ -61,7 +61,7 @@ services:
6161
volumes:
6262
- ./configs:/configs
6363
external-node:
64-
image: "matterlabs/external-node:2.0-v28.2.1"
64+
image: "matterlabs/external-node:v29.1.2"
6565
entrypoint:
6666
[
6767
"/usr/bin/entrypoint.sh",
@@ -94,6 +94,7 @@ services:
9494
EN_PROMETHEUS_PORT: 3322
9595
EN_ETH_CLIENT_URL: https://ethereum-sepolia-rpc.publicnode.com
9696
EN_MAIN_NODE_URL: https://sepolia.era.zksync.dev
97+
EN_GATEWAY_URL: https://rpc.era-gateway-testnet.zksync.dev
9798
EN_L1_CHAIN_ID: 11155111
9899
EN_L2_CHAIN_ID: 300
99100
EN_PRUNING_ENABLED: true

0 commit comments

Comments
 (0)