├── .gitignore ├── Dockerfile ├── README.md ├── app └── requirements.txt ├── django.conf ├── run.sh ├── supervisord.conf ├── uwsgi.ini └── uwsgi_params /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbentley/docker-django-uwsgi-nginx/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbentley/docker-django-uwsgi-nginx/HEAD/README.md -------------------------------------------------------------------------------- /app/requirements.txt: -------------------------------------------------------------------------------- 1 | django<2.0 2 | -------------------------------------------------------------------------------- /django.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbentley/docker-django-uwsgi-nginx/HEAD/django.conf -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbentley/docker-django-uwsgi-nginx/HEAD/run.sh -------------------------------------------------------------------------------- /supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbentley/docker-django-uwsgi-nginx/HEAD/supervisord.conf -------------------------------------------------------------------------------- /uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbentley/docker-django-uwsgi-nginx/HEAD/uwsgi.ini -------------------------------------------------------------------------------- /uwsgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbentley/docker-django-uwsgi-nginx/HEAD/uwsgi_params --------------------------------------------------------------------------------