A Docker image egy read-only sablon (egy csomagolt alkalmazás annak függőségeivel); a container az image-ből futó futó instance. A kapcsolat olyan, mint az osztály és az objektum: egy image-ből sok container jöhet létre.
Image vs container
IMAGE → a read-only TEMPLATE: the app + dependencies + config, built in layers
(like a blueprint/class; stored, shared, versioned)
CONTAINER → a RUNNING INSTANCE of an image (with a writable layer on top)
(like an object created from a class; has runtime state)
One IMAGE → many CONTAINERS (run the same image multiple times)
