Skip to content
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 clients/erigon/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ RUN chmod +x /hive-bin/enode.sh
RUN /usr/local/bin/erigon --version | sed -e 's/erigon version \(.*\)/\1/' > /version.txt

# Export the usual networking ports to allow outside access to the node.
EXPOSE 8545 8546 8550 30303 30303/udp
EXPOSE 8545 8546 8551 30303 30303/udp

ENTRYPOINT ["/erigon.sh"]
2 changes: 1 addition & 1 deletion clients/ethereumjs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN chmod +x /hive-bin/enode.sh
ADD genesis.json /genesis.json

# Export the usual networking ports to allow outside access to the node
EXPOSE 8545 8546 8550 8547 30303 30303/udp
EXPOSE 8545 8546 8551 8547 30303 30303/udp

# NodeJS applications have a default memory limit of 2.5GB.
# This limit is bit tight, it is recommended to raise the limit
Expand Down
2 changes: 1 addition & 1 deletion clients/go-ethereum/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ RUN chmod +x /hive-bin/enode.sh
ADD genesis.json /genesis.json

# Export the usual networking ports to allow outside access to the node
EXPOSE 8545 8546 8547 8550 30303 30303/udp
EXPOSE 8545 8546 8547 8551 30303 30303/udp

# Generate the ethash verification caches
RUN \
Expand Down
2 changes: 1 addition & 1 deletion clients/go-ethereum/geth.sh
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ FLAGS="$FLAGS --ws --ws.addr=0.0.0.0 --ws.origins \"*\" --ws.api=admin,debug,eth

if [ "$HIVE_TERMINAL_TOTAL_DIFFICULTY" != "" ]; then
echo "0x7365637265747365637265747365637265747365637265747365637265747365" > /jwtsecret
FLAGS="$FLAGS --authrpc.addr=0.0.0.0 --authrpc.port=8550 --authrpc.jwtsecret /jwtsecret"
FLAGS="$FLAGS --authrpc.addr=0.0.0.0 --authrpc.port=8551 --authrpc.jwtsecret /jwtsecret"
fi

# Configure GraphQL.
Expand Down
2 changes: 1 addition & 1 deletion simulators/eth2/testnet/nodes.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (

const (
PortUserRPC = 8545
PortEngineRPC = 8550
PortEngineRPC = 8551
PortBeaconTCP = 9000
PortBeaconUDP = 9000
PortBeaconAPI = 4000
Expand Down