Skip to content

Commit

Permalink
added http port to lighthouse
Browse files Browse the repository at this point in the history
  • Loading branch information
feshchenkod committed Nov 30, 2022
1 parent ee4e47e commit 1efc7b9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 2 additions & 0 deletions geth/docker-compose.no-proxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ services:
--port ${CL_P2P_PORT}
--http
--http-address 0.0.0.0
--http-port ${CL_HTTP_PORT}
--enr-address $PUBLIC_IP
--enr-udp-port ${CL_P2P_PORT}
--target-peers $TARGET_PEERS
Expand All @@ -99,6 +100,7 @@ services:
ports:
- '${CL_P2P_PORT}:${CL_P2P_PORT}/tcp'
- '${CL_P2P_PORT}:${CL_P2P_PORT}/udp'
# - '${CL_HTTP_PORT}:${CL_HTTP_PORT}'
volumes:
- ./lighthouse-data:/home/.eth2/beaconchaindata
- ./secrets:/secrets
2 changes: 2 additions & 0 deletions geth/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ services:
--port ${CL_P2P_PORT}
--http
--http-address 0.0.0.0
--http-port ${CL_HTTP_PORT}
--enr-address $PUBLIC_IP
--enr-udp-port ${CL_P2P_PORT}
--target-peers $TARGET_PEERS
Expand All @@ -123,6 +124,7 @@ services:
ports:
- '${CL_P2P_PORT}:${CL_P2P_PORT}/tcp'
- '${CL_P2P_PORT}:${CL_P2P_PORT}/udp'
# - '${CL_HTTP_PORT}:${CL_HTTP_PORT}'
volumes:
- ./lighthouse-data:/home/.eth2/beaconchaindata
- ./secrets:/secrets
Expand Down
5 changes: 3 additions & 2 deletions geth/example.env
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ RPC_URL=http://geth:8545
CHECKPOINT_RPC_URL=
PUBLIC_IP=
EXECUTION_ENDPOINT=http://geth:8554
CL_P2P_PORT=30304
CL_P2P_PORT=9004
TARGET_PEERS=50
LOG_LEVEL=info
LOG_LEVEL=info
CL_HTTP_PORT=5054

0 comments on commit 1efc7b9

Please sign in to comment.