Fork of Pleroma with site-specific changes and feature branches https://git.pleroma.social/pleroma/pleroma
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

15 lignes
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