Rename run.sh to entrypoint.sh
This commit is contained in:
25
utils/entrypoint.sh
Executable file
25
utils/entrypoint.sh
Executable file
@@ -0,0 +1,25 @@
|
||||
#!/bin/bash
|
||||
|
||||
#
|
||||
# The entrypoint for the docker containers
|
||||
#
|
||||
|
||||
# Debug
|
||||
# FLASK_APP=app/__init__.py FLASK_CONFIG=../config.cfg FLASK_DEBUG=1 python3 -m flask run -h 0.0.0.0 -p 5123
|
||||
|
||||
if [ -z "$FLASK_DEBUG" ]; then
|
||||
echo "FLASK_DEBUG is required in config.env"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
ENV="-e FLASK_APP=app/__init__.py -e FLASK_CONFIG=../config.cfg -e FLASK_DEBUG=$FLASK_DEBUG"
|
||||
|
||||
if [ "$FLASK_DEBUG" -eq "1" ]; then
|
||||
EXTRA="--reload"
|
||||
fi
|
||||
|
||||
echo "Running gunicorn with:"
|
||||
echo " - env: $ENV"
|
||||
echo " - extra: $EXTRA"
|
||||
|
||||
gunicorn -w 4 -b :5123 $ENV $EXTRA app:app
|
||||
Reference in New Issue
Block a user