akkoma/docker-entrypoint.sh

15 lines
263 B
Bash
Raw Normal View History

#!/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..."
2022-10-16 18:03:34 +00:00
mix ecto.migrate
echo "-- Starting!"
2022-10-16 18:03:34 +00:00
mix phx.server