forked from GeoNode/geonode
-
Notifications
You must be signed in to change notification settings - Fork 17
/
entrypoint.sh
executable file
·51 lines (33 loc) · 1.03 KB
/
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
#!/bin/bash
set -e
/usr/local/bin/invoke update >> /usr/src/app/invoke.log
source $HOME/.override_env
echo DATABASE_URL=$DATABASE_URL
echo GEODATABASE_URL=$GEODATABASE_URL
echo SITEURL=$SITEURL
echo ALLOWED_HOSTS=$ALLOWED_HOSTS
echo GEOSERVER_PUBLIC_LOCATION=$GEOSERVER_PUBLIC_LOCATION
/usr/local/bin/invoke waitfordbs >> /usr/src/app/invoke.log
echo "waitfordbs task done"
/usr/local/bin/invoke migrations >> /usr/src/app/invoke.log
echo "migrations task done"
/usr/local/bin/invoke prepare >> /usr/src/app/invoke.log
echo "prepare task done"
/usr/local/bin/invoke fixtures >> /usr/src/app/invoke.log
echo "fixture task done"
cmd="$@"
echo DOCKER_ENV=$DOCKER_ENV
if [ -z ${DOCKER_ENV} ] || [ ${DOCKER_ENV} = "development" ]
then
echo "Executing standard Django server $cmd for Development"
else
if [ ${IS_CELERY} = "true" ]
then
cmd=$CELERY_CMD
echo "Executing Celery server $cmd for Production"
else
cmd=$UWSGI_CMD
echo "Executing UWSGI server $cmd for Production"
fi
fi
exec $cmd