Skip to content

Commit 5234654

Browse files
authored
Update geth-entrypoint (#311)
use env var for GETH_DATA_DIR if set
1 parent d1639e1 commit 5234654

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

geth/geth-entrypoint

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -eu
33

44
VERBOSITY=${GETH_VERBOSITY:-3}
5-
GETH_DATA_DIR=/data
5+
GETH_DATA_DIR=${GETH_DATA_DIR:-/data}
66
RPC_PORT="${RPC_PORT:-8545}"
77
WS_PORT="${WS_PORT:-8546}"
88
AUTHRPC_PORT="${AUTHRPC_PORT:-8551}"

0 commit comments

Comments
 (0)