first commit
This commit is contained in:
17
resources/scripts/entrypoint-server.sh
Normal file
17
resources/scripts/entrypoint-server.sh
Normal file
@@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
|
||||
while ! nc -z db 5432; do
|
||||
sleep 2
|
||||
echo "Waiting postgress...."
|
||||
done
|
||||
|
||||
python3 manage.py collectstatic --noinput
|
||||
python3 manage.py migrate --noinput
|
||||
|
||||
gunicorn config.wsgi:application -b 0.0.0.0:8000 --workers $(($(nproc) * 2 + 1))
|
||||
|
||||
|
||||
|
||||
exit $?
|
||||
|
||||
|
||||
Reference in New Issue
Block a user