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

Commit

Permalink
Merge pull request #35 from dappnode/tropicar/port-standardization
Browse files Browse the repository at this point in the history
Port standardization
  • Loading branch information
alexpeterson91 authored Oct 19, 2022
2 parents abcdd13 + 6d96dfc commit 8765f6d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions beacon-chain/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ exec -c beacon-chain \
--grpc-gateway-host=0.0.0.0 \
--monitoring-host=0.0.0.0 \
--p2p-local-ip=0.0.0.0 \
--p2p-tcp-port=$P2P_TCP_PORT \
--p2p-udp-port=$P2P_UDP_PORT \
--http-web3provider=$HTTP_WEB3PROVIDER \
--grpc-gateway-port=3500 \
--grpc-gateway-corsdomain=$CORSDOMAIN \
Expand Down
6 changes: 4 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,16 @@ services:
volumes:
- "beacon-chain-data:/data"
ports:
- 12000/udp
- 13000/tcp
- "13003:13003/udp"
- "14003:14003/tcp"
restart: unless-stopped
environment:
WEB3_BACKUP: "https://rpc.gnosischain.com/"
HTTP_WEB3PROVIDER: "http://nethermind-xdai.dappnode:8545"
CORSDOMAIN: "http://gnosis-beacon-chain-prysm.dappnode"
DEPLOYMENT_BLOCK: 19469077
P2P_TCP_PORT: 14003
P2P_UDP_PORT: 13003
EXTRA_OPTS: ""
validator:
image: "validator.gnosis-beacon-chain-prysm.dnp.dappnode.eth:0.1.0"
Expand Down

0 comments on commit 8765f6d

Please sign in to comment.