Registr Docker je storage a distribuční systém pro Docker images — pushujete images do něj a pullujete je z něj. Docker Hub je výchozí veřejný registr; organizace často používají privátní registry. Registries jsou způsob, jak se images sdílí a nasazují.
Co dělá registr
A REGISTRY stores and distributes Docker images:
→ PUSH an image to the registry (upload/publish it)
→ PULL an image from the registry (download it to run)
→ This is how images move between machines: build once, push, pull anywhere
(CI builds an image → pushes to a registry → production pulls and runs it)
