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
10 changes: 10 additions & 0 deletions .env.sample.hoodi
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,14 @@ LIGHTHOUSE_CHECKPOINT_SYNC_URL=https://checkpoint-sync.hoodi.ethpandaops.io/
# See available tags https://hub.docker.com/r/chainsafe/lodestar/tags
#CL_LODESTAR_VERSION=

# Prysm beacon node docker container image version.
# See available tags https://console.cloud.google.com/artifacts/docker/prysmaticlabs/us/gcr.io/prysm%2Fbeacon-chain
#CL_PRYSM_VERSION=

# Nimbus beacon node docker container image version.
# See available tags https://hub.docker.com/r/statusim/nimbus-eth2/tags
#CL_NIMBUS_VERSION=

######### Validator Client Config #########

# Override prometheus metrics port for validator client.
Expand Down Expand Up @@ -210,6 +218,8 @@ MEV_RELAYS=https://0x98f0ef62f00780cf8eb06701a7d22725b9437d4768bb19b363e882ae871
#CL_GRANDINE_ALLOY_MONITORED=false
#CL_TEKU_ALLOY_MONITORED=false
#CL_LODESTAR_ALLOY_MONITORED=false
#CL_PRYSM_ALLOY_MONITORED=false
#CL_NIMBUS_ALLOY_MONITORED=false
#CHARON_ALLOY_MONITORED=false
#VC_LODESTAR_ALLOY_MONITORED=false
#VC_NIMBUS_ALLOY_MONITORED=false
Expand Down
10 changes: 10 additions & 0 deletions .env.sample.mainnet
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,14 @@ LIGHTHOUSE_CHECKPOINT_SYNC_URL=https://mainnet.checkpoint.sigp.io/
# See available tags https://hub.docker.com/r/chainsafe/lodestar/tags
#CL_LODESTAR_VERSION=

# Prysm beacon node docker container image version.
# See available tags https://console.cloud.google.com/artifacts/docker/prysmaticlabs/us/gcr.io/prysm%2Fbeacon-chain
#CL_PRYSM_VERSION=

# Nimbus beacon node docker container image version.
# See available tags https://hub.docker.com/r/statusim/nimbus-eth2/tags
#CL_NIMBUS_VERSION=

######### Validator Client Config #########

# Override prometheus metrics port for validator client.
Expand Down Expand Up @@ -210,6 +218,8 @@ MEV_RELAYS=https://0xa15b52576bcbf1072f4a011c0f99f9fb6c66f3e1ff321f11f461d15e31b
#CL_GRANDINE_ALLOY_MONITORED=false
#CL_TEKU_ALLOY_MONITORED=false
#CL_LODESTAR_ALLOY_MONITORED=false
#CL_PRYSM_ALLOY_MONITORED=false
#CL_NIMBUS_ALLOY_MONITORED=false
#CHARON_ALLOY_MONITORED=false
#VC_LODESTAR_ALLOY_MONITORED=false
#VC_NIMBUS_ALLOY_MONITORED=false
Expand Down
90 changes: 82 additions & 8 deletions compose-cl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
# |___/

cl-grandine:
profiles: [cl-grandine]
profiles: [ cl-grandine ]
image: sifrai/grandine:${GRANDINE_VERSION:-2.0.3}
restart: unless-stopped
labels:
Expand All @@ -36,7 +36,7 @@ services:
volumes:
- ./data/cl-grandine:/root/.grandine
- ./jwt:/jwt:ro
networks: [dvnode]
networks: [ dvnode ]

# _ _ _ _ _
# | (_) __ _| |__ | |_| |__ ___ _ _ ___ ___
Expand All @@ -46,7 +46,7 @@ services:
# |___/

cl-lighthouse:
profiles: [cl-lighthouse]
profiles: [ cl-lighthouse ]
image: sigp/lighthouse:${LIGHTHOUSE_VERSION:-v8.1.3}
restart: unless-stopped
labels:
Expand Down Expand Up @@ -74,7 +74,7 @@ services:
volumes:
- ./data/lighthouse:/opt/app/beacon # Keep data in lighthouse and not cl-lighthouse for backwards compatibility
- ./jwt:/opt/jwt
networks: [dvnode]
networks: [ dvnode ]

# _ _
# | |_ ___| | ___ _
Expand All @@ -83,7 +83,7 @@ services:
# \__\___|_|\_\\__,_|

cl-teku:
profiles: [cl-teku]
profiles: [ cl-teku ]
image: consensys/teku:${CL_TEKU_VERSION:-26.3.0}
restart: unless-stopped
labels:
Expand All @@ -110,7 +110,7 @@ services:
volumes:
- ./data/cl-teku:/opt/teku/data
- ./jwt:/jwt:ro
networks: [dvnode]
networks: [ dvnode ]

# _ _ _
# | | ___ __| | ___ ___| |_ __ _ _ __
Expand All @@ -119,7 +119,7 @@ services:
# |_|\___/ \__,_|\___||___/\__\__,_|_|

cl-lodestar:
profiles: [cl-lodestar]
profiles: [ cl-lodestar ]
image: chainsafe/lodestar:${CL_LODESTAR_VERSION:-v1.40.0}
restart: unless-stopped
labels:
Expand All @@ -146,4 +146,78 @@ services:
volumes:
- ./data/cl-lodestar:/opt/lodestar/data
- ./jwt:/jwt:ro
networks: [dvnode]
networks: [ dvnode ]

# _ __ _ __ _ _ ___ _ __ ___
# | '_ \| '__| | | / __| '_ ` _ \
# | |_) | | | |_| \__ \ | | | | |
# | .__/|_| \__, |___/_| |_| |_|
# |_| |___/

cl-prysm:
profiles: [ cl-prysm ]
image: gcr.io/prysmaticlabs/prysm/beacon-chain:${CL_PRYSM_VERSION:-v7.1.3}
restart: unless-stopped
labels:
- "alloy-monitored=${CL_PRYSM_ALLOY_MONITORED:-true}"
command:
- --accept-terms-of-use
- --${NETWORK}
- --datadir=/data
- --checkpoint-sync-url=${LIGHTHOUSE_CHECKPOINT_SYNC_URL}
- --genesis-beacon-api-url=${LIGHTHOUSE_CHECKPOINT_SYNC_URL}
- --execution-endpoint=http://${EL}:8551
- --jwt-secret=/jwt/jwt.hex
- --http-mev-relay=http://${MEV}:18550
- --http-host=0.0.0.0
- --http-port=5052
- --disable-monitoring=false
- --monitoring-host=0.0.0.0
- --monitoring-port=5054
ports:
- ${CL_PORT_P2P:-9000}:13000/tcp
- ${CL_PORT_P2P:-9000}:12000/udp
- ${CL_IP_HTTP:-127.0.0.1}:${CL_PORT_HTTP:-5052}:5052
volumes:
- ./data/cl-prysm:/data
- ./jwt:/jwt:ro
networks: [ dvnode ]

# _ _
# _ __ (_)_ __ ___ | |__ _ _ ___
# | '_ \| | '_ ` _ \| '_ \| | | / __|
# | | | | | | | | | | |_) | |_| \__ \
# |_| |_|_|_| |_| |_|_.__/ \__,_|___/

cl-nimbus:
profiles: [ cl-nimbus ]
image: statusim/nimbus-eth2:${CL_NIMBUS_VERSION:-multiarch-v26.3.1}
restart: unless-stopped
labels:
- "alloy-monitored=${CL_NIMBUS_ALLOY_MONITORED:-true}"
# Nimbus has no runtime checkpoint-sync flag — to checkpoint-sync from an
# empty data dir, run the `trustedNodeSync` subcommand once before `up`:
# docker compose run --rm --no-deps cl-nimbus trustedNodeSync \
# --network=$NETWORK --data-dir=/data \
# --trusted-node-url=$LIGHTHOUSE_CHECKPOINT_SYNC_URL --backfill=false
command:
- --network=${NETWORK}
- --data-dir=/data
- --el=http://${EL}:8551
- --jwt-secret=/jwt/jwt.hex
- --rest
- --rest-address=0.0.0.0
- --rest-port=5052
- --metrics
- --metrics-address=0.0.0.0
- --metrics-port=5054
- --payload-builder=true
- --payload-builder-url=http://${MEV}:18550
ports:
- ${CL_PORT_P2P:-9000}:9000/tcp
- ${CL_PORT_P2P:-9000}:9000/udp
- ${CL_IP_HTTP:-127.0.0.1}:${CL_PORT_HTTP:-5052}:5052
volumes:
- ./data/cl-nimbus:/data
- ./jwt:/jwt:ro
networks: [ dvnode ]
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ services:
networks: [dvnode]
environment:
PROM_REMOTE_WRITE_TOKEN: ${PROM_REMOTE_WRITE_TOKEN}
SERVICE_OWNER: ${SERVICE_OWNER:-"obol-cdvn"}
SERVICE_OWNER: ${SERVICE_OWNER:-obol-cdvn}
CLUSTER_NAME: ${CLUSTER_NAME:-}
CLUSTER_PEER: ${CLUSTER_PEER:-}
volumes:
Expand Down
Loading
Loading