2020-04-20 18:56:29 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2020-04-23 20:19:49 +02:00
|
|
|
wait_for_redis() {
|
|
|
|
echo "Trying to connect to redis at ${REDIS_HOST:-redis}:${REDIS_PORT:-6379} ..."
|
|
|
|
while ! nc -z ${REDIS_HOST:-redis} ${REDIS_PORT:-6379};
|
|
|
|
do
|
|
|
|
sleep 1;
|
|
|
|
done;
|
|
|
|
echo "Successfully connected to redis. Continuing.";
|
|
|
|
}
|
|
|
|
|
|
|
|
wait_for_database() {
|
|
|
|
echo "Trying to connect to database at ${SQL_HOST:-postgres}:${SQL_PORT:-5432} ..."
|
|
|
|
while ! nc -z ${SQL_HOST:-postgres} ${SQL_PORT:-5432};
|
|
|
|
do
|
|
|
|
sleep 1;
|
|
|
|
done;
|
|
|
|
echo "Successfully connected to database. Continuing.";
|
|
|
|
}
|
|
|
|
|
2020-04-25 10:22:22 +02:00
|
|
|
migrate() {
|
|
|
|
python manage.py makemigrations
|
|
|
|
python manage.py migrate
|
|
|
|
}
|
|
|
|
|
2020-05-01 16:08:07 +02:00
|
|
|
initialize() {
|
|
|
|
python manage.py createdefaultgroup
|
|
|
|
python manage.py createdefaultapplication
|
|
|
|
}
|
|
|
|
|
2020-04-25 10:22:22 +02:00
|
|
|
wait_for_redis
|
|
|
|
wait_for_database
|
|
|
|
migrate
|
2020-05-01 16:08:07 +02:00
|
|
|
initialize
|
2020-04-25 10:22:22 +02:00
|
|
|
supervisord -n -c /etc/supervisord.conf
|