Spaces:
Build error
Build error
File size: 237 Bytes
5ce62ba |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/bin/bash
# Wait for PostgreSQL
while ! pg_isready -q -h localhost -p 5432 -U postadmin
do
echo "$(date) - waiting for database to start"
sleep 2
done
# Run migrations
alembic upgrade head
# Start Supervisor
/usr/bin/supervisord
|