Amrit Poudeleramritpoudel.hashnode.dev·Aug 22, 20245.Comprehensive Guide to Docker Concepts: Distroless Images, Multistage Builds, and Best Practices1. Google Distroless Images What Are Distroless Images? Distroless images are a specialized type of Docker image designed to contain only the application and its runtime dependencies, without the extra overhead of an operating system. These images ar...1 like·28 readsdistroless image
ashwini purwatashwini23.hashnode.dev·Jul 19, 2024Multistage Docker BuildsWhat is Multistage docker build? With multi-stage builds, a Docker build uses one base image for compilation, packaging, and unit tests and then a separate image for the application runtime. As a result, the final image is smaller in size since it do...Docker
Sidharth Dashsidharthsatyabrata.hashnode.dev·Mar 7, 2024Containerizing Application with Docker and Docker Concepts, Multistage Docker VolumesMonolithic Application vs Micro service:- In Monolithic application has a single code base where we have merged all the modules and created a single jar file. I can't specifically allocate more resources to a single specific module i have to scale th...1 like·81 readsDockerscout
krishnapal rawatkrishkp.hashnode.dev·Oct 17, 2023Multi Stage Docker Builds - Reduce Image Size by 89 %in above image - green tick marked image is created with multi stage- with mimimal size and red check mark image is build without distroless image/ multi stage docker which is bigger in size. Understanding Multi-Stage Docker Builds Multi-stage Docker...docker images
Sitabja Chatterjeesitchatt.hashnode.dev·Mar 7, 2023Multi-Stage Docker fileHey learners, Today I'm bringing a very demanding and important topic to everyone so that everyone can get to know how to reduce the size of Docker-image significantly and also increase the security of Docker containers. So, let's learn! At the end o...3 likes·333 readsDevops