Skip to content

Commit

Permalink
Update geth-entrypoint (#311)
Browse files Browse the repository at this point in the history
use env var for GETH_DATA_DIR if set
  • Loading branch information
web3-nodeops committed Aug 12, 2024
1 parent d1639e1 commit 5234654
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geth/geth-entrypoint
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -eu

VERBOSITY=${GETH_VERBOSITY:-3}
GETH_DATA_DIR=/data
GETH_DATA_DIR=${GETH_DATA_DIR:-/data}
RPC_PORT="${RPC_PORT:-8545}"
WS_PORT="${WS_PORT:-8546}"
AUTHRPC_PORT="${AUTHRPC_PORT:-8551}"
Expand Down

0 comments on commit 5234654

Please sign in to comment.