diff --git a/src/api/app/prestart.sh b/src/api/app/init.sh similarity index 100% rename from src/api/app/prestart.sh rename to src/api/app/init.sh diff --git a/src/api/scripts/run.sh b/src/api/scripts/run.sh index 212f6bc..c4d2966 100644 --- a/src/api/scripts/run.sh +++ b/src/api/scripts/run.sh @@ -2,8 +2,8 @@ set -e -# If there's a prestart.sh script in the /app directory, run it before starting -PRE_START_PATH=/app/prestart.sh +# If there's a init.sh script in the /app directory, run it before starting +PRE_START_PATH=/app/init.sh if [ -f $PRE_START_PATH ] ; then . "$PRE_START_PATH" else