diff --git a/abra.sh b/abra.sh index 59f0f2e..f4e166e 100644 --- a/abra.sh +++ b/abra.sh @@ -1,4 +1,4 @@ -export APP_ENTRYPOINT_VERSION=v7 +export APP_ENTRYPOINT_VERSION=v8 export DB_ENTRYPOINT_VERSION=v2 create_email_user() { diff --git a/entrypoint.sh.tmpl b/entrypoint.sh.tmpl index d511d61..f86a99b 100644 --- a/entrypoint.sh.tmpl +++ b/entrypoint.sh.tmpl @@ -19,5 +19,7 @@ export SECRET_KEY=$(cat /run/secrets/secret_key) export DATABASE_PASSWORD=$(cat /run/secrets/db_password) export DATABASE_URL="postgres://outline:${DATABASE_PASSWORD}@${STACK_NAME}_db:5432/outline" -/usr/local/bin/yarn db:migrate --env=production-ssl-disabled -/usr/local/bin/yarn start "$@" +if [ ! "$1" = "-e" ]; then + /usr/local/bin/yarn db:migrate --env=production-ssl-disabled + /usr/local/bin/yarn start "$@" +fi