logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git

docker-entrypoint.sh (302B)


  1. #!/bin/ash
  2. set -e
  3. echo "-- Waiting for database..."
  4. while ! pg_isready -U ${DB_USER:-pleroma} -d postgres://${DB_HOST:-db}:${DB_PORT:-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