diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index 6485632..3a182d3 100755 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -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..."