Skip to content

Commit

Permalink
Holesky CDVC (#140)
Browse files Browse the repository at this point in the history
* Update docker-compose.yml

* Update .env.sample

* Update docker-compose.yml

Co-authored-by: Luke Hackett <[email protected]>

* Update .env.sample

Co-authored-by: Luke Hackett <[email protected]>

---------

Co-authored-by: Luke Hackett <[email protected]>
  • Loading branch information
aly-obol and LukeHackett12 authored Mar 19, 2024
1 parent 3b64c4d commit 4151b04
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .env.sample
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This is a sample environment file that allows overriding default configuration defined
# in docker-compose.yml. Rename this file to `.env` and then uncomment and set any variable below.

# Supported ethereum network (for ex: mainnet, goerli, sepolia, ropsten, gnosis) .
# Supported ethereum network (for ex: mainnet, holesky, sepolia, gnosis) .
#ETH2_NETWORK=

######### Nethermind Config #########
Expand Down
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ services:
- ${NETHERMIND_PORT_HTTP:-8545}:8545 # JSON-RPC
- ${NETHERMIND_PORT_ENGINE:-8551}:8551 # ENGINE-API
command: |
--config=${ETH2_NETWORK:-goerli}
--config=${ETH2_NETWORK:-holesky}
--datadir=data
--HealthChecks.Enabled=true
--JsonRpc.Enabled=true
Expand Down Expand Up @@ -70,8 +70,8 @@ services:
- ${LIGHTHOUSE_PORT_METRICS:-5054}:5054 # Metrics
command: |
lighthouse bn
--network=${ETH2_NETWORK:-goerli}
--checkpoint-sync-url=https://checkpoint-sync.goerli.ethpandaops.io/
--network=${ETH2_NETWORK:-holesky}
--checkpoint-sync-url=https://checkpoint-sync.holesky.ethpandaops.io/
--execution-endpoint=${LIGHTHOUSE_EXECUTION_ENDPOINT:-http://nethermind:8551}
--execution-jwt=/opt/jwt/jwt.hex
--datadir=/opt/app/beacon/
Expand Down Expand Up @@ -174,7 +174,7 @@ services:
restart: unless-stopped
environment:
LIGHTHOUSE_BEACON_NODE_ADDRESS: http://node0:3600
ETH2_NETWORK: ${ETH2_NETWORK:-goerli}
ETH2_NETWORK: ${ETH2_NETWORK:-holesky}
volumes:
- ./lighthouse/run.sh:/opt/lighthouse/run.sh
- .charon/cluster/node0/validator_keys:/opt/charon/keys
Expand Down Expand Up @@ -212,7 +212,7 @@ services:
restart: unless-stopped
environment:
LIGHTHOUSE_BEACON_NODE_ADDRESS: http://node3:3600
ETH2_NETWORK: ${ETH2_NETWORK:-goerli}
ETH2_NETWORK: ${ETH2_NETWORK:-holesky}
volumes:
- ./lighthouse/run.sh:/opt/lighthouse/run.sh
- .charon/cluster/node3/validator_keys:/opt/charon/keys
Expand Down

0 comments on commit 4151b04

Please sign in to comment.