morss/docker-entry.sh

13 lines
239 B
Bash
Raw Normal View History

#! /bin/sh
2021-11-24 20:23:16 +00:00
if [ "$1" = "sh" ] || [ "$1" = "bash" ]; then
exec $@
elif [ -z "$1" ] || [ "$@" = "run" ]; then
gunicorn --bind 0.0.0.0:${PORT:-8000} --workers 4 --worker-class=gevent --preload --access-logfile - morss
2021-11-24 20:23:16 +00:00
else
morss $@
2021-11-24 20:23:16 +00:00
fi