We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75b999f commit e219a27Copy full SHA for e219a27
1 file changed
scripts/entrypoint.sh
@@ -7,13 +7,12 @@ MONIKER=${MONIKER:-docker}
7
# ============================================
8
# DETERMINE NODE HOME DIRECTORY
9
10
-# Cosmos SDK convention for node home
11
-NODE_HOME="/app/.shardeumd"
12
-
13
-# Validate NODE_TYPE
14
case $NODE_TYPE in
15
- API|SENTRY)
16
- echo "Node type: $NODE_TYPE"
+ API)
+ NODE_HOME="/app"
+ ;;
+ SENTRY)
+ NODE_HOME="/app/.shardeumd"
17
;;
18
*)
19
echo "ERROR: NODE_TYPE must be 'API' or 'SENTRY'"
0 commit comments