Fork of Pleroma with site-specific changes and feature branches https://git.pleroma.social/pleroma/pleroma
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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