Container Volume Options and Features
Background Containers need a mechanism to store data, without which it will not be useful. Virtual Machines have the quality that once started, any modifications are saved as a new VM. Containers on the other hand are transient and are not designed to store any state that the application generates Types of Container Storage needs Image Storage: The first is image storage . This can be provided with existing shared storage and has requirements much like platforms already built for distributing and protecting virtual machine (VM) images in server virtualization. · The benefit is container images are much smaller than golden VM images because they don't duplicate operating system code. · Also, running container images are immutable by design, so they can be stored and shared efficiently. There is a consequence, though, as the container image cannot store dynamic application data. The second req...