GitHub
github.com › nickjj › docker-django-example
GitHub - nickjj/docker-django-example: A production ready example Django app that's using Docker and Docker Compose. · GitHub
A production ready example Django app that's using Docker and Docker Compose. - nickjj/docker-django-example
Starred by 1.5K users
Forked by 467 users
Languages Python 37.9% | Shell 29.4% | HTML 19.2% | Dockerfile 11.2% | JavaScript 2.2% | CSS 0.1%
GitHub
github.com › philgyford › django-docker-example
GitHub - philgyford/django-docker-example: My example Django setup using Docker for local development.
Starred by 22 users
Forked by 23 users
Languages Python 78.5% | Shell 9.7% | Dockerfile 7.7% | HTML 4.1% | Python 78.5% | Shell 9.7% | Dockerfile 7.7% | HTML 4.1%
Videos
01:54:14
Dockerise & deploy a Django app with Docker - Full guide | Django ...
25:38
Simplify Django development with Docker - YouTube
25:54
🐍 Django with Docker 🐳 | How to Dockerize Django Apps + basic ...
Building a Django Docker Container
34:11
Building a Django Docker Container - YouTube
05:11:54
Deploy Django into Production with Kubernetes, Docker, & Github ...
GitHub
github.com › testdrivenio › django-on-docker
GitHub - testdrivenio/django-on-docker: Dockerizing Django with Postgres, Gunicorn, and Nginx
Starred by 1.2K users
Forked by 454 users
Languages Python 81.0% | Dockerfile 9.0% | Shell 5.7% | HTML 4.3% | Python 81.0% | Dockerfile 9.0% | Shell 5.7% | HTML 4.3%
GitHub
github.com › anuragrana › docker-django-example
GitHub - anuragrana/docker-django-example: An example on how to run your Django project in Docker container
Starred by 2 users
Forked by 3 users
Languages Python 91.2% | Dockerfile 8.8% | Python 91.2% | Dockerfile 8.8%
GitHub
github.com › rowdybeaver › sample-django-docker
GitHub - rowdybeaver/sample-django-docker: A sample of using Django with Docker and docker-compose
Starred by 58 users
Forked by 13 users
Languages Python 76.4% | Dockerfile 12.7% | Shell 5.6% | HTML 5.3% | Python 76.4% | Dockerfile 12.7% | Shell 5.6% | HTML 5.3%
GitHub
github.com › MasterKale › Docker-Django
GitHub - MasterKale/Docker-Django: A complete Django setup, running in Docker · GitHub
A complete Django setup, running in Docker. Contribute to MasterKale/Docker-Django development by creating an account on GitHub.
Starred by 72 users
Forked by 25 users
Languages Shell 53.9% | Dockerfile 37.4% | Python 8.7%
GitHub
github.com › ruddra › docker-django
GitHub - ruddra/docker-django: A complete docker package for django which is easy to understand and can be deployed anywhere(supports Data Science related libraries like numpy, scipy etc).
April 30, 2021 - A boilerplate to deploy Django with cool stuff. Also serves as an example project from these tutorial:
Starred by 479 users
Forked by 125 users
Languages Python 52.3% | Shell 23.9% | Dockerfile 12.6% | HTML 8.2% | Makefile 3.0% | Python 52.3% | Shell 23.9% | Dockerfile 12.6% | HTML 8.2% | Makefile 3.0%
GitHub
github.com › docker-library › django
GitHub - docker-library/django: Docker Official Image packaging for django · GitHub
Starred by 128 users
Forked by 53 users
Languages Shell
GitHub
github.com › xtrinch › django-docker-example
GitHub - xtrinch/django-docker-example: Sample project with docker-compose using django and postgres
Starred by 3 users
Forked by 8 users
Languages Python 100.0% | Python 100.0%
GitHub
github.com › dotja › django-docker-compose
GitHub - dotja/django-docker-compose: Deploying a Django project in production with Docker Compose, Gunicorn and Nginx.
Deploying a Django project in production with Docker Compose, Gunicorn and Nginx. - dotja/django-docker-compose
Starred by 189 users
Forked by 112 users
Languages Python 86.6% | Shell 8.6% | Dockerfile 4.8% | Python 86.6% | Shell 8.6% | Dockerfile 4.8%
GitHub
github.com › huchenw › django-docker
GitHub - huchenw/django-docker: A demo for deploying Django project on Docker.
Starred by 35 users
Forked by 21 users
Languages Python 93.7% | HTML 6.3% | Python 93.7% | HTML 6.3%
GitHub
github.com › amerkurev › django-docker-template
GitHub - amerkurev/django-docker-template: Dockerized Django with Postgres, Gunicorn, and Traefik or Caddy (with auto renew Let's Encrypt)
However, if you have a second similar project, it would be better to change the volume name from sqlite to something else so that the second project uses its own copy of the database. For example: docker run -it --rm -p 8000:8000 -v another_sqlite:/sqlite -v $(pwd)/website:/usr/src/website django-docker-template:master python manage.py runserver 0.0.0.0:8000
Starred by 223 users
Forked by 43 users
Languages Python 81.2% | Dockerfile 7.8% | HTML 6.2% | Shell 4.7% | CSS 0.1% | Python 81.2% | Dockerfile 7.8% | HTML 6.2% | Shell 4.7% | CSS 0.1%
GitHub
github.com › kencochrane › django-docker
GitHub - kencochrane/django-docker: Demo Django App using Docker · GitHub
Demo Django App using Docker · Use this to build a new image · $ sudo docker build . With a tag for easier reuse · $ sudo docker build -t <your username>/django-docker . Running the container · $ sudo docker run -d -p :8000 <your ...
Starred by 188 users
Forked by 66 users
Languages CSS 90.9% | Python 8.5% | Shell 0.6%
GitHub
github.com › morninj › django-docker
GitHub - morninj/django-docker: A framework for deploying Django projects on Docker
Starred by 354 users
Forked by 103 users
Languages Python 60.4% | Shell 27.7% | HTML 5.4% | Nginx 5.2% | CSS 1.3% | Python 60.4% | Shell 27.7% | HTML 5.4% | Nginx 5.2% | CSS 1.3%
Better Stack
betterstack.com › community › guides › scaling-python › dockerize-django
Containerizing Django Applications with Docker | Better Stack Community
January 21, 2026 - With the Dockerfile created, you'll now build a Docker image for your Django application. First, you'll set up a .dockerignore file to exclude unnecessary or sensitive files, then build and verify the image. You can use the contents from this .dockerignore example for Python projects: ... # See: https://gist.github...
GitHub
github.com › akaariai › django-dockerfile
GitHub - akaariai/django-dockerfile
Point your browser to http://example.com:8010 - you should have a complete installation ready! Note that you can start a bash shell in the container by running docker exec -i -t my_project /bin/bash on the remote server. This is extremely convenient for debugging, but you should avoid doing configuration changes into the container - the whole idea is that the Dockerfile sets up your running environment.
Author akaariai