Balabvm.hashnode.dev·Jan 2, 20255 Easy Steps to Minimize Docker Image SizeIntroduction: Reducing the docker images helps in speeding up the container deployment. In large scale deployments the reduced image size may result in significantly saving storage space. Here, we will explore few tips for minimizing docker images wh...39 readsDocker
Harshit Sahuharshitsahu2311.hashnode.dev·Dec 21, 2024Multi-Stage Docker Build - CKAContainerization has become a critical part of modern application development and deployment workflows. Docker allows developers to package their applications, including all dependencies, into a portable image. One of the best practices in Dockerfile...58 readsCertified Kubernetes Administratormulti stage docker file
Yash Kharcheyash-kharche.hashnode.dev·Dec 2, 2024Dockerize Django Web Application with Multi-Stage BuildsAs a computer science student and a full-stack developer intern at The Hotspring, I've had the chance to work on a wide range of applications, including Django-based ones. Throughout my journey, I’ve also developed a strong interest in DevOps, partic...10 likes·119 readsDocker
Amulyaawscloudbasics.hashnode.dev·Nov 21, 2024Reducing Docker Image Size by 800%: The Magic of Multi-Stage Builds and Distroless Images🚀 Introduction: The Docker Image Bloat Problem Imagine creating a simple calculator application and ending up with a Docker image that's 861 MB in size. Sounds ridiculous, right? This is a common pain point for developers and DevOps engineers. Today...DevOpsDocker
Munilakshmi G J100daysdevops.hashnode.dev·Nov 9, 2024Day 15 of 100 Days : Mastering Multi-Stage Builds in DockerWelcome to Day 15 of my 100 Days of DevOps journey! Today, we’re diving deep into multi-stage builds in Docker, a crucial technique for building lean and efficient Docker images. In this post, I'll walk you through the concepts behind multi-stage bui...Docker
Kevsquid.hashnode.dev·Nov 9, 2024Multi-stage docker imagesOne of the requirement as DevOps is to constantly optimize build process. Today if you're shipping container images with Docker and your Dockerfiles aren't multi-stage, you're likely shipping unnecessary bloat to production. This makes your image siz...CICDmulti stage docker file
Manoj Shetmanojshet.hashnode.dev·Oct 23, 2024Containerizing a Flask Application with Docker: Rock-Paper-Scissors GameContainerization has revolutionized the way applications are developed, deployed, and managed. It allows developers to package applications along with their dependencies into containers, ensuring consistency across different environments. This blog p...Docker
Siddhi Kiran Bajracharyasiddhibajracharya.hashnode.dev·Sep 10, 2024My docker image for IOT device is huge!Recently, I was working on IOT devices. My setup is a raspbery pi+oak device using balena cloud. As I was developing an applicaton for this setup, I had to write a dockerfile because Balena uses a dockerfile to build images and run containers on the ...26 readsDockerbalena
Yusuf Isahyuscode.hashnode.dev·Sep 6, 2024Chapter 5 - Building Docker ImagesIntroduction To truly harness the power of Docker, we need to create our own custom images. This chapter will take you into the world of image creation, covering the essential topics of building images from Dockerfiles, tagging images for easy manage...DockerDocker
Rahul Vadakkiniyilrahulvadakkiniyil.hashnode.dev·Sep 6, 2024Day 3 of 40 days of Kubernetes Series : Multi Stage Docker BuildWhat is a Docker Multi-Stage Build? A Docker multi-stage build is a Dockerfile that uses multiple FROM statements to build a Docker image in stages. This can be used to reduce the image size, improve performance, and make the build process more effic...70 readsmulti stage docker file