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: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
CLIENT=${CLIENT:-geth}
CLIENT=${CLIENT:-reth}
HOST_DATA_DIR=./${CLIENT}-data
USE_BASE_CONSENSUS=true
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ services:
execution:
build:
context: .
dockerfile: ${CLIENT:-geth}/Dockerfile
dockerfile: ${CLIENT:-reth}/Dockerfile
restart: unless-stopped
ports:
- "8545:8545" # RPC
Expand All @@ -20,7 +20,7 @@ services:
node:
build:
context: .
dockerfile: ${CLIENT:-geth}/Dockerfile
dockerfile: ${CLIENT:-reth}/Dockerfile
restart: unless-stopped
depends_on:
- execution
Expand Down
Loading