From b2b939f7ad040a6152cdd224902d67f888a0fd59 Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Thu, 29 Aug 2024 18:35:20 -0400 Subject: [PATCH] fix: bind node ports to localhost --- docker-compose.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index 3f837c90c..aaa1df319 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -8,9 +8,9 @@ services: volumes: - /home/prad/.core:/root/.sonr ports: - - "26657:26657" - - "1317:1317" - - "9090:9090" + - "127.0.0.1:26657:26657" + - "127.0.0.1:1317:1317" + - "127.0.0.1:9090:9090" environment: - CHAIN_ID=local-1 - MONIKER=localvalidator