Fork of Pleroma with site-specific changes and feature branches https://git.pleroma.social/pleroma/pleroma
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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