Skip to content
Draft
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: 2 additions & 0 deletions beacon-chain/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ FLAGS="beacon \
--rest.address=0.0.0.0 \
--rest.port=${BEACON_API_PORT} \
--port=${P2P_PORT} \
--quic \
--quicPort=${QUIC_PORT} \
--metrics \
--metrics.port=8008 \
--metrics.address=0.0.0.0 \
Expand Down
2 changes: 2 additions & 0 deletions package_variants/gnosis/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ services:
args:
NETWORK: gnosis
P2P_PORT: 19012
QUIC_PORT: 19013
ports:
- 19012:19012/tcp
- 19012:19012/udp
- 19013:19013/udp
validator:
build:
args:
Expand Down
2 changes: 2 additions & 0 deletions package_variants/hoodi/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ services:
args:
NETWORK: hoodi
P2P_PORT: 9712
QUIC_PORT: 9713
ports:
- 9712:9712/tcp
- 9712:9712/udp
- 9713:9713/udp
validator:
build:
args:
Expand Down
2 changes: 2 additions & 0 deletions package_variants/mainnet/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ services:
args:
NETWORK: mainnet
P2P_PORT: 9112
QUIC_PORT: 9113
ports:
- 9112:9112/tcp
- 9112:9112/udp
- 9113:9113/udp
validator:
build:
args:
Expand Down
Loading