-
Notifications
You must be signed in to change notification settings - Fork 0
Resources
Learn how to deploy Django with Docker the right way! Say goodbye to common mistakes like using runserver for production or broken static files.
Docker + Django: Containerize the Right Way with Nginx, Postgresql & Gunicorn
Learn how to deploy a Django website on Nginx with uWSGI as a web server gate interface. In this complete tutorial, we will use Ubuntu 20.04 and the latest version of Django and uWSGI. Nginx will communicate requests to the WSGI via a UNIX socket. Additionally, we will create a system service to launch the website at boot (and keep the service running).
How to Deploy Django on Nginx with uWSGI (full tutorial)
Build and run Django in Docker in 10 minutes (+ bonus tips)
Better Stack YouTube video explaining Docker Image BEST Practices - From 1.2GB to 10MB
Visit the Google Container Tools Distroless GitHub repository to find Distroless Container Images.
These are Google's take on minimal images. Distroless images contain no operating system at all. No shell, no package manager, not even basic linux commands. Just your application and it's runtime.