Compare commits

..

1 Commits

Author SHA1 Message Date
James Edington
d4d572fd89 Initial commit: feature/docker-compose 2022-03-14 09:31:18 -05:00

View File

@ -1,14 +0,0 @@
#!/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