Skip to content

Commit 77255d1

Browse files
mw2000Sertug17
andauthored
fix: default CLIENT to reth in .env and docker-compose.yml (#1035)
* fix: default CLIENT to reth in .env The default .env ships CLIENT=geth, which combined with USE_BASE_CONSENSUS=true crash-loops on a clean checkout. This contradicts the README (reth is documented as default) and the Azul migration guide (geth + base-consensus is unsupported). Change the CLIENT fallback from geth to reth so that a clean checkout works out of the box. Fixes #1010 * fix: update default client from geth to reth in docker-compose.yml --------- Co-authored-by: Serhat Dolmac <srhtsrht17@gmail.com>
1 parent d4a32b2 commit 77255d1

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
CLIENT=${CLIENT:-geth}
1+
CLIENT=${CLIENT:-reth}
22
HOST_DATA_DIR=./${CLIENT}-data
33
USE_BASE_CONSENSUS=true

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ services:
22
execution:
33
build:
44
context: .
5-
dockerfile: ${CLIENT:-geth}/Dockerfile
5+
dockerfile: ${CLIENT:-reth}/Dockerfile
66
restart: unless-stopped
77
ports:
88
- "8545:8545" # RPC
@@ -20,7 +20,7 @@ services:
2020
node:
2121
build:
2222
context: .
23-
dockerfile: ${CLIENT:-geth}/Dockerfile
23+
dockerfile: ${CLIENT:-reth}/Dockerfile
2424
restart: unless-stopped
2525
depends_on:
2626
- execution

0 commit comments

Comments
 (0)