forked from trypromptly/LLMStack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-entrypoint.sh
executable file
·54 lines (45 loc) · 1.39 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
#!/bin/sh
set -e
DATABASE_HOST=${DATABASE_HOST:-postgres}
apiserver() {
echo "Starting API server"
if [ "x$DJANGO_MANAGEPY_MIGRATE" != 'xoff' ]; then
python manage.py migrate --noinput
fi
if [ "x$DJANGO_MANAGEPY_COLLECTSTATIC" != 'xoff' ]; then
python manage.py collectstatic --noinput
fi
if [ "x$DJANGO_MANAGEPY_CREATECACHETABLE" != 'xoff' ]; then
python manage.py createcachetable
fi
if [ "x$DJANGO_MANAGEPY_CLEARCACHE" != 'xoff' ]; then
python manage.py clearcache
fi
if [ "x$AUTORELOAD" = 'xTrue' ] && [ "x$SINGLE_THREAD" = 'xFalse' ]; then
uvicorn llmstack.server.asgi:application --reload --port 9000 --host 0.0.0.0 --reload-dir /code
elif [ "x$AUTORELOAD" = 'xFalse' ] && [ "x$SINGLE_THREAD" = 'xTrue' ]; then
python manage.py runserver --nothreading --noreload 0.0.0.0:9000
else
/usr/local/bin/gunicorn llmstack.server.asgi:application -w 6 -b :9000 --timeout 0 -k uvicorn.workers.UvicornWorker
fi
}
rqworker() {
echo "Starting RQ worker"
python manage.py rqworker default --verbosity=0 --with-scheduler
}
until pg_isready -h $DATABASE_HOST; do
>&2 echo "Postgres is unavailable - sleeping"
sleep 1
done
>&2 echo "Postgres is up - continuing"
case "$1" in
apiserver)
apiserver
;;
rqworker)
rqworker
;;
*)
exec "$@"
;;
esac