What is Docker Images and Exaplin in 10 bullet lines?
Limited Time Offer!
For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly.
Master DevOps, SRE, DevSecOps Skills!
- Docker image is a collection of files systems
- A docker image acts as a blueprint for docker container.
- File systems are layered over each other
- Layer 0 must contain a root filesystem
- Each layer in image will have 40 character length UUID generated by SHA 256 algorithm.
- The topmost layer will have priority.
- All layers in a docker image is Read only.
- All layers in an image is combined to form a container.
- From one image multiple containers can be created.
- Each container will have a copy of image attached to it.