Skip to content

Resources

Edward Baitsewe edited this page Feb 16, 2025 · 5 revisions

Resources

Docker + Django

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

Deploy Django on Nginx with uWSGI

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

Build and run Django in Docker in 10 minutes (+ bonus tips)

Docker Image Best Practices

Better Stack YouTube video explaining Docker Image BEST Practices - From 1.2GB to 10MB

Distroless

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.

Dive

Dive

Slim

Slim

Clone this wiki locally