MNManoj Naikincloudopschronicle.hashnode.dev·1d ago · 3 min readBuilding Smaller Docker Images Using Multi-Stage BuildsA practical introduction to Docker Multi-Stage Builds for creating smaller, cleaner, and production-ready container images. Introduction Up until now, I had been building simple Flask applications usi00
MNManoj Naikincloudopschronicle.hashnode.dev·1d ago · 4 min readUnderstanding Docker Volumes: Persisting Data Beyond ContainersA practical guide to storing application data using Docker Volumes. Introduction Containers are designed to be temporary and disposable. This raised an important question: What happens to application10
MNManoj Naikincloudopschronicle.hashnode.dev·2d ago · 3 min readRunning a Flask Application Behind NGINX Using Docker ComposeA hands-on guide to building a multi-container application using Flask, NGINX, and Docker Compose. Introduction Most production applications do not expose the application server directly to users. Ins00
MNManoj Naikincloudopschronicle.hashnode.dev·2d ago · 3 min readBuilding a Multi-Container Flask and Redis Application Using Docker Compose After building a static website container and a simple Flask application, I wanted to take the next step to running multiple containers together. In real-world applications, a single container is rare00
MNManoj Naikincloudopschronicle.hashnode.dev·3d ago · 2 min readContainerising a Python Flask Application Using DockerAfter successfully building and publishing a static web page using Docker, I wanted to take the next step by containerising a simple Python Flask application. In this article, I will walk through crea10