Merge pull request 'fix: always migrate before start' (#11) from arso/outline:dev into main

Reviewed-on: #11
This commit is contained in:
3wordchant 2022-08-04 14:48:24 +00:00
commit 7685fe6abf
2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
export APP_ENTRYPOINT_VERSION=v5
export APP_ENTRYPOINT_VERSION=v6
migrate() {
export DATABASE_PASSWORD=$(cat /run/secrets/db_password)

View File

@ -15,4 +15,5 @@ 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 "$@"