From 83bb8a1f1ba70a1820718925eab34716bd418cd9 Mon Sep 17 00:00:00 2001 From: pekkahcut Date: Tue, 18 Aug 2026 01:55:53 +0300 Subject: [PATCH] fix: bind execution RPC endpoints to localhost --- docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index c88064344e..d547063997 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,9 +5,9 @@ services: dockerfile: Dockerfile restart: unless-stopped ports: - - "8545:8545" # RPC - - "8546:8546" # websocket - - "7301:6060" # metrics + - "127.0.0.1:8545:8545" # RPC + - "127.0.0.1:8546:8546" # websocket + - "127.0.0.1:7301:6060" # metrics - "30303:30303" # P2P TCP - "30303:30303/udp" # P2P UDP command: ["bash", "./execution-entrypoint"]