GitHub
github.com › testdrivenio › django-on-docker
GitHub - testdrivenio/django-on-docker: Dockerizing Django with Postgres, Gunicorn, and Nginx
Dockerizing Django with Postgres, Gunicorn, and Nginx - testdrivenio/django-on-docker
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 › pawamoy › docker-nginx-postgres-django-example
GitHub - pawamoy/docker-nginx-postgres-django-example: Example using Docker, Django, multiple Postgres databases, NginX, Gunicorn, pipenv, GitLab CI and tox.
This is a Docker setup for a web application based on Django. The Django application is served by Gunicorn (WSGI application). We use NginX as reverse proxy and static files server.
Starred by 164 users
Forked by 72 users
Languages Python 83.0% | Makefile 11.5% | Dockerfile 5.5% | Python 83.0% | Makefile 11.5% | Dockerfile 5.5%
Videos
25:43
🔥Deployer une Application Django avec Docker et Nginx sur un ...
11:25
Deployer une Application Django avec Docker et Nginx sur un VPS: ...
11:50
Déployer Django avec Docker, PostgreSQL, Nginx & Gunicorn (Tutoriel ...
14:42
Docker + Django: Containerize the Right Way with Nginx, Postgresql ...
Django Docker Deployment with HTTPS using Letsencrypt
56:46
Nginx Reverse Proxy | Django Deployment | Docker | Staticfiles ...
GitHub
github.com › wiamsuri › django-gunicorn-nginx-docker
GitHub - wiamsuri/django-gunicorn-nginx-docker: Ready-To-Deploy Django application with docker compose
Starred by 131 users
Forked by 61 users
Languages Python 93.2% | Dockerfile 6.8% | Python 93.2% | Dockerfile 6.8%
GitHub
github.com › mgnisia › Boilerplate-Docker-Django-Gunicorn-Nginx
GitHub - mgnisia/Boilerplate-Docker-Django-Gunicorn-Nginx: This repo contains a small example for a Django App in a Docker Container. For the deployment the docker-compose file uses Gunicorn and nginx. Based on the repo of Pawamoy (https://github.com/Pawamoy/docker-nginx-postgres-django-example).
This repo contains a small example for a Django App in a Docker Container. For the deployment the docker-compose file uses Gunicorn and nginx. Based on the repo of Pawamoy (https://github.com/Pawamoy/docker-nginx-postgres-django-example).
Starred by 84 users
Forked by 21 users
Languages Dockerfile 100.0% | Dockerfile 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.
The Dockerfile for this container is in the /nginx folder. The Nginx configuration will interact with the Gunicorn service at port 8000 and it will also serve the static files in /static also mounted to the same volume.
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%
Pawamoy
pawamoy.github.io › posts › docker-compose-django-postgres-nginx
Docker Compose with NginX, Django, Gunicorn and multiple Postgres databases - pawamoy's website
The config/nginx/conf.d/local.conf file contains our NginX configuration: # first we declare our upstream server, which is our Gunicorn application upstream hello_server { # docker will automatically resolve this to the correct address # because we use the same name as the service: "djangoapp" server djangoapp:8000; } # now we declare our main server server { listen 80; server_name localhost; location / { # everything is passed to Gunicorn proxy_pass http://hello_server; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $host; proxy_redirect off; } }
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).
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 › chenjr0719 › Docker-Django-Nginx-MySQL
GitHub - chenjr0719/Docker-Django-Nginx-MySQL: Dockerfile for Django with uWSGI, Nginx, MySQL, Python 3.
Starred by 21 users
Forked by 18 users
Languages Shell 87.6% | Python 12.4% | Shell 87.6% | Python 12.4%
GitHub
github.com › Efrat19 › django-nginx-docker
GitHub - Efrat19/django-nginx-docker: a basic django server + nginx proxy running on docker-compose environment
a basic django server + nginx proxy running on docker-compose environment - GitHub - Efrat19/django-nginx-docker: a basic django server + nginx proxy running on docker-compose environment
Author Efrat19
GitHub
github.com › WHOIGit › django-nginx-postgres-docker
GitHub - WHOIGit/django-nginx-postgres-docker: A Docker Compose starter kit with Nginx, Django, Gunicorn, and Postgres database.
A Docker Compose starter kit with Nginx, Django, Gunicorn, and Postgres database. - WHOIGit/django-nginx-postgres-docker
Starred by 2 users
Forked by 3 users
Languages Python 88.0% | Dockerfile 12.0% | Python 88.0% | Dockerfile 12.0%
GitHub
github.com › kartoza › docker-nginx-django
GitHub - kartoza/docker-nginx-django: A simple Nginx derived container which includes a conf file ready to serve our django projects
A simple Nginx derived container which includes a conf file ready to serve our django projects - kartoza/docker-nginx-django
Forked by 3 users
GitHub
github.com › leopard627 › django-gunicorn-nginx-docker
GitHub - leopard627/django-gunicorn-nginx-docker: django gunicorn docker example
cd django_gunicorn python3 manage.py runserver --settings=django_gunicorn.settings.development · # Access via localhost (:80 port). docker-compose up --build
Starred by 56 users
Forked by 11 users
Languages Python 90.0% | Dockerfile 10.0% | Python 90.0% | Dockerfile 10.0%
GitHub
github.com › by-sabbir › django-gunicorn-nginx-docker
GitHub - by-sabbir/django-gunicorn-nginx-docker: Docker helps us package container based applications like python, django, flask, nginx, gunicorn, PostgreSQL, MySQL as a deployment ready system. We will, in this article, deploy a django app with nginx, gunicorn, PostgreSQL in their separate docker. We will package the whole project with docker-compose.
Docker helps us package container based applications like python, django, flask, nginx, gunicorn, PostgreSQL, MySQL as a deployment ready system. We will, in this article, deploy a django app with nginx, gunicorn, PostgreSQL in their separate docker.
Starred by 16 users
Forked by 10 users
Languages Python 80.2% | HTML 17.8% | Dockerfile 2.0% | Python 80.2% | HTML 17.8% | Dockerfile 2.0%
GitHub
github.com › mabr0wn › docker-django-nginx-postgres-redis-containers
GitHub - mabr0wn/docker-django-nginx-postgres-redis-containers: 🐳 Build a web app Docker. this stack will include 1 web/Django container, 1 nginx container, 1 Postgres container, 1 Redis container, 1 data container
July 30, 2019 - 🐳 Build a web app Docker. this stack will include 1 web/Django container, 1 nginx container, 1 Postgres container, 1 Redis container, 1 data container - mabr0wn/docker-django-nginx-postgres-redis-containers
Starred by 16 users
Forked by 4 users
Languages Python 78.6% | HTML 16.6% | Shell 2.6% | Dockerfile 1.5% | CSS 0.7% | Python 78.6% | HTML 16.6% | Shell 2.6% | Dockerfile 1.5% | CSS 0.7%
GitHub
github.com › Devin0xFFFFFF › docker-nginx-django-angular2
GitHub - Devin0xFFFFFF/docker-nginx-django-angular2: A client-server Angular 2 app proxied by Nginx that communicates with a Django back-end · GitHub
This project consists of an Angular 2 App, a Django Server, and an Nginx Proxy Server. Each get their own Docker container to execute in, and have their own Dockerfile to create Docker images.
Starred by 10 users
Forked by 2 users
Languages Python 40.4% | TypeScript 34.1% | HTML 19.1% | CSS 4.6%
GitHub
github.com › felipelm › django-nginx-reactjs-docker
GitHub - felipelm/django-nginx-reactjs-docker: Tutorial integrating django, reactjs, nginx and docker
Starred by 72 users
Forked by 36 users
Languages JavaScript 46.1% | Python 35.3% | HTML 12.9% | CSS 3.6% | Dockerfile 1.2% | Shell 0.9% | JavaScript 46.1% | Python 35.3% | HTML 12.9% | CSS 3.6% | Dockerfile 1.2% | Shell 0.9%
GitHub
github.com › sceptic30 › docker-compose-django
GitHub - sceptic30/docker-compose-django: A Django App, powered by Docker-Compose using Nginx as a Reverse Proxy.
version: '3.4' services: app: image: django container_name: django hostname: django restart: always env_file: variables/.django.env build: context: . dockerfile: ./Dockerfile volumes: - ./app:/app command: python manage.py runserver 0.0.0.0:8000 networks: - default proxy: depends_on: - app image: admintuts/nginx:1.20.0-rtmp-geoip2-alpine container_name: proxy hostname: proxy restart: always ports: - "80:80" - "443:443" volumes: - ./proxy/nginx.conf:/etc/nginx/nginx.conf - ./app/app/static:/etc/nginx/static networks: - default volumes: app: proxy: networks: default: driver: bridge volumes: app: proxy: networks: default: driver: bridge
Author sceptic30
GitHub
github.com › godd0t › django-docker-quickstart
GitHub - godd0t/django-docker-quickstart: Your all-in-one Django-Docker starter kit. Pre-configured services including PostgreSQL, Redis, Celery, with Nginx and Traefik for production. Streamlined development with included tools for testing and formatting.
Your all-in-one Django-Docker starter kit. Pre-configured services including PostgreSQL, Redis, Celery, with Nginx and Traefik for production. Streamlined development with included tools for testin...
Starred by 246 users
Forked by 35 users
Languages Python 54.6% | Shell 33.8% | Makefile 8.5% | Dockerfile 3.1% | Python 54.6% | Shell 33.8% | Makefile 8.5% | Dockerfile 3.1%