Skip to content
This repository has been archived by the owner on Jun 8, 2024. It is now read-only.

Port standardization #61

Merged
merged 3 commits into from
Jul 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion beacon-chain/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ exec lighthouse \
--http-allow-origin "*" \
--http-address 0.0.0.0 \
--http-port $BEACON_API_PORT \
--port 9000 \
--port $P2P_PORT \
--metrics \
--metrics-address 0.0.0.0 \
--metrics-port 8008 \
Expand Down
5 changes: 3 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ services:
volumes:
- "beacon-data:/root/.lighthouse"
ports:
- 9000/tcp
- 9000/udp
- "9504:9504/tcp"
- "9504:9504/udp"
restart: unless-stopped
security_opt:
- "seccomp:unconfined"
Expand All @@ -19,6 +19,7 @@ services:
BEACON_API_PORT: 3500
HTTP_WEB3PROVIDER: "http://goerli-geth.dappnode:8545"
CORSDOMAIN: "http://lighthouse.dappnode"
P2P_PORT: 9504
CHECKPOINT_SYNC_URL: ""
EXTRA_OPTS: ""
validator:
Expand Down