forked from GeoNode/geonode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
entrypoint.sh
executable file
·85 lines (59 loc) · 1.94 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#!/bin/bash
set -e
/usr/local/bin/invoke update >> /usr/src/app/invoke.log
source $HOME/.override_env
echo IS_CELERY=$IS_CELERY
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
echo GEOSERVER_WEB_UI_LOCATION=$GEOSERVER_WEB_UI_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"
cmd="$@"
echo DOCKER_ENV=$DOCKER_ENV
if [ -z ${DOCKER_ENV} ] || [ ${DOCKER_ENV} = "development" ]
then
/usr/local/bin/invoke prepare
echo "prepare task done"
/usr/local/bin/invoke fixtures
echo "fixture task done"
if [ ${IS_CELERY} = "true" ] || [ ${IS_CELERY} = "True" ]
then
cmd=$cmd
echo "Executing Celery server $cmd for Development"
else
echo "install requirements for development"
/usr/local/bin/invoke devrequirements
echo "refresh static data"
/usr/local/bin/invoke statics
echo "static data refreshed"
cmd=$cmd
echo "Executing standard Django server $cmd for Development"
fi
else
if [ ${IS_CELERY} = "true" ] || [ ${IS_CELERY} = "True" ]
then
cmd=$CELERY_CMD
echo "Executing Celery server $cmd for Production"
else
if [ ! -e "/mnt/volumes/statics/geonode_init.lock" ]; then
/usr/local/bin/invoke prepare
echo "prepare task done"
/usr/local/bin/invoke fixtures
echo "fixture task done"
fi
/usr/local/bin/invoke initialized
echo "initialized"
echo "refresh static data"
/usr/local/bin/invoke statics
echo "static data refreshed"
cmd=$UWSGI_CMD
echo "Executing UWSGI server $cmd for Production"
fi
fi
echo "command to be executed is $cmd"
exec $cmd