What is Docker Images and Exaplin in 10 bullet lines?

  • Docker image is a collection of file system
  • Can create multiple container from same image
  • File systems are layered over each other
  • Layer 0 is the base image
  • All layers in a docker image is read only.
  • Image layering is by Union Mounts