generated from alecodes/base-template
11 lines
216 B
Bash
11 lines
216 B
Bash
#!/bin/sh
|
|
|
|
if [[ -e $DB_PASSWORD_FILE ]]; then
|
|
DB_PASSWORD=$(cat $DB_PASSWORD_FILE)
|
|
fi
|
|
|
|
export DATABASE_URL="postgres://${DB_USER}:${DB_PASSWORD}@db:5432/${DB_DB}?sslmode=disable"
|
|
|
|
dbmate migrate --wait
|
|
|
|
exec "$@"
|