Skip to content

Commit

Permalink
Add manual config option (#260)
Browse files Browse the repository at this point in the history
* Add manual config option

* Match syntax from elsewhere
  • Loading branch information
cmmarslender committed Jun 14, 2024
1 parent 5aaad6e commit 7281622
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 7281622

Please sign in to comment.