-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-entrypoint.sh
61 lines (51 loc) · 1.61 KB
/
docker-entrypoint.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env sh
umask 0000
set -ex
cd /usr/src/app/
if [ "$HEALTH_CHECK_DATABASE" = "postgres" ]
then
python << END
import psycopg2, sys, time
suggest_unrecoverable_after = 30
start = time.time()
print("POSTGRES Connecting to ${DATABASE_URL}")
while True:
try:
psycopg2.connect(dsn="$DATABASE_URL")
break
except psycopg2.OperationalError as error:
sys.stderr.write("Waiting for PostgreSQL to become available...\n")
if time.time() - start > suggest_unrecoverable_after:
sys.stderr.write(" This is taking longer than expected. The following exception may be indicative of an unrecoverable error: '{}'\n".format(error))
time.sleep(1)
END
>&2 echo 'PostgreSQL is available'
fi
if [ "$HEALTH_CHECK_BROKER" = "redis" ]
then
python << END
import redis, sys, time
print("REDIS Connecting to ${CELERY_BROKER_URL}")
suggest_unrecoverable_after = 30
start = time.time()
while True:
try:
r = redis.from_url("${CELERY_BROKER_URL}")
r.ping()
break
except redis.exceptions.RedisError as error:
sys.stderr.write("Waiting for redis to become available...\n")
if time.time() - start > suggest_unrecoverable_after:
sys.stderr.write(" This is taking longer than expected. The following exception may be indicative of an unrecoverable error: '{}'\n".format(error))
time.sleep(1)
END
>&2 echo 'Redis is available'
fi
if [ "$INIT_VIDAR_DATA" = "True" ]
then
python manage.py migrate --noinput
python manage.py init_vidar --create-tasks
python manage.py init_example_users
#python manage.py collectstatic --noinput &
fi
exec "$@"