From 76225932a036f46b71bf19d11a6c6c51175be45d Mon Sep 17 00:00:00 2001 From: Matthieu Vachon Date: Tue, 2 Dec 2025 11:22:25 -0500 Subject: [PATCH 1/2] Make el client listens on all interfaces for P2P (instead of `127.0.0.1`) This make it possible to sync another execution client from outside the Docker compose. --- playground/components.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playground/components.go b/playground/components.go index 2be2713..9a7fcf6 100644 --- a/playground/components.go +++ b/playground/components.go @@ -441,7 +441,7 @@ func (r *RethEL) Run(svc *Service, ctx *ExContext) { "--datadir", "/data_reth", "--color", "never", "--ipcpath", "/data_reth/reth.ipc", - "--addr", "127.0.0.1", + "--addr", "0.0.0.0", "--port", `{{Port "rpc" 30303}}`, // "--disable-discovery", // http config From c9ad6c22f7127261f8dfbf57ad4f426b4f7423c0 Mon Sep 17 00:00:00 2001 From: Matthieu Vachon Date: Tue, 2 Dec 2025 15:06:13 -0500 Subject: [PATCH 2/2] Added also `--addr=0.0.0.0` to OpReth --- playground/components.go | 1 + 1 file changed, 1 insertion(+) diff --git a/playground/components.go b/playground/components.go index 9a7fcf6..bf50359 100644 --- a/playground/components.go +++ b/playground/components.go @@ -719,6 +719,7 @@ func (o *OpReth) Run(service *Service, ctx *ExContext) { "--disable-discovery", "--color", "never", "--metrics", `0.0.0.0:{{Port "metrics" 9090}}`, + "--addr", "0.0.0.0", "--port", `{{Port "rpc" 30303}}`). WithArtifact("/data/jwtsecret", "jwtsecret"). WithArtifact("/data/l2-genesis.json", "l2-genesis.json").