Fork of Pleroma with site-specific changes and feature branches https://git.pleroma.social/pleroma/pleroma
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
290B

  1. #!/bin/ash
  2. set -e
  3. echo "-- Waiting for database..."
  4. while ! pg_isready -U ${DB_USER:-pleroma} -d postgres://${DB_HOST:-db}:5432/${DB_NAME:-pleroma} -t 1; do
  5. sleep 1s
  6. done
  7. echo "-- Running migrations..."
  8. $HOME/bin/pleroma_ctl migrate
  9. echo "-- Starting!"
  10. exec $HOME/bin/pleroma start