nopaque/docker-entrypoint.sh

13 lines
360 B
Bash
Raw Normal View History

2019-11-29 14:08:16 +00:00
#!/bin/bash
2019-10-25 13:28:45 +00:00
echo "Waiting for db..."
2019-11-29 14:08:16 +00:00
wait-for-it db:5432 --strict --timeout=0
2019-10-25 13:28:45 +00:00
echo "Waiting for redis..."
2019-11-29 14:08:16 +00:00
wait-for-it redis:6379 --strict --timeout=0
2019-10-25 13:28:45 +00:00
GUNICORN_WORKERS="${GUNICORN_WORKERS:-1}"
source venv/bin/activate
flask deploy
gunicorn --access-logfile - --bind :5000 --error-logfile - --workers "${GUNICORN_WORKERS}" --worker-class eventlet nopaque:app