πŸš€ DevOps Certified Professional
πŸ“… Starting: 1st of Every Month 🀝 +91 8409492687 | 🀝 +1 (469) 756-6329 πŸ” Contact@DevOpsSchool.com

docker Image

DevOps

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.


Get Started Now!

  1. Docker Image is a collection of file system rootfs (base) + ufs + appfs

2. 1 COPY of image of get mounted to each container.

3. Image name is the same as repo name

4. repo can be stored in registry (dockerhub etc)

5. Docker images contains multiple file system and each file system is referred to as layer.

6. Base layer is always β€” root file system

7. When we create a container – all layers are merged into 1 layer and that get mounted to container.

8. In case of conflict between a layers – top layer always win. this means that suppose 2 layers have a file with the same name then the file which is in the upper layer will be the one that will appear in the merged layer

9. If we stop the container : merge layer disappears

10. Each layer of a Docker image is viewable under /var/lib/docker