The current approach of using Django built in server is not really suited for bigger deployments as it can handle only one request at time. We should move to more powerful setup, probably using uwsgi.
There is existing solution in https://github.com/dockerfiles/django-uwsgi-nginx
This would also allow us to remove nginx container from the docker-compose.
The current approach of using Django built in server is not really suited for bigger deployments as it can handle only one request at time. We should move to more powerful setup, probably using uwsgi.
There is existing solution in https://github.com/dockerfiles/django-uwsgi-nginx
This would also allow us to remove nginx container from the docker-compose.