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