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: 2 additions & 0 deletions operator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ FROM sigp/anchor:${UPSTREAM_VERSION}

ARG NETWORK
ARG P2P_PORT
ARG QUIC_PORT
ARG STAKER_SCRIPTS_VERSION

ENV P2P_PORT=${P2P_PORT} \
QUIC_PORT=${QUIC_PORT} \
HTTP_PORT=5062 \
STAKER_SCRIPTS_URL=https://github.com/dappnode/staker-package-scripts/releases/download/${STAKER_SCRIPTS_VERSION}

Expand Down
4 changes: 4 additions & 0 deletions operator/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ FLAGS="--network=${NETWORK} \
--metrics-address=0.0.0.0 \
--metrics-port=5164 \
--port=${P2P_PORT} \
--quic-port=${QUIC_PORT} \
--enr-udp-port=${P2P_PORT} \
--enr-tcp-port=${P2P_PORT} \
--enr-quic-port=${QUIC_PORT} \
--password-file=${PASSWORD_FILE_PATH} \
$KEY_FILE $EXTRA_OPTS"

Expand Down
4 changes: 2 additions & 2 deletions package_variants/hoodi/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ services:
args:
NETWORK: hoodi
P2P_PORT: 9102
QUIC_PORT: 9103
ports:
- "9102:9102/tcp"
- "9102:9102/udp"
environment:
CORSDOMAIN: "http://anchor-hoodi.dappnode"
- "9103:9103/udp"
4 changes: 2 additions & 2 deletions package_variants/mainnet/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ services:
args:
NETWORK: mainnet
P2P_PORT: 9100
QUIC_PORT: 9101
ports:
- "9100:9100/tcp"
- "9100:9100/udp"
environment:
CORSDOMAIN: "http://anchor.dappnode"
- "9101:9101/udp"
Loading