How to Configure Django + Gunicorn inside Docker
Introduction Gunicorn ‘Green Unicorn’ is a Python WSGI HTTP Server for UNIX. It’s a pre-fork worker model ported from Ruby’s Unicornproject[1]. Within this article we will look at the steps on how to configure Gunicorn to serve your Django application inside a Docker container. Entrypoint First of all we create a script[2] and name it entrypoint.sh. … Read more