entrypoint.sh
421 Bytes
#!/bin/sh
if [ "$DATABASE" = "postgres" ]
then
echo "Waiting for postgres..."
while ! nc -z $SQL_HOST $SQL_PORT; do
sleep 0.1
done
echo "PostgreSQL started"
fi
if [ "$DATABASE" = "mysql" ]
then
echo "Waiting for mysql..."
while ! nc -z $SQL_HOST $SQL_PORT; do
sleep 0.1
done
echo "MySQL started"
fi
#python manage.py flush --no-input
python manage.py migrate
exec "$@"