Skip to content

Commit

Permalink
Add manual config option
Browse files Browse the repository at this point in the history
  • Loading branch information
cmmarslender committed Jun 14, 2024
1 parent 909e91a commit 324ed83
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ cd /chia-blockchain || exit 1
# shellcheck disable=SC1091
. ./activate

if [ "$manual_config" = "true" ]; then
# Manual config mode skips everything below and lets you manage your config manually
exec "$@"
return
fi

# Set a few overrides if the service variable contains simulator
if [ -z "${service##*simulator*}" ]; then
echo "Setting up environment for simulator..."
Expand Down

0 comments on commit 324ed83

Please sign in to comment.