Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!
We spend hours on Instagram and YouTube and waste money on coffee and fast food, but wonβt spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!
Learn from Guru Rajesh Kumar and double your salary in just one year.
What is Docker Images and Explain in 10 bullet lines?
Collection of file systems
One copy of docker image get attached to each container.
From one image multiple containers can be created
Layered structure
Each layer is each File system
Layer 0 should be base image or Root FS
Once image is attached to container, these layers will be attached to the container as a single layer
The layers in image will be on read only format, and to have the changes the thin layer in container should be used and commit that and form a new image
For creating docker images one of the following can be used
β Layer by layer adding (using existing container)
β All layers in one go (using docker file)