A Docker registry egy tárolási és terjesztési rendszer Docker image-ekhez — push-olsz image-eket rá és pull-ozol belőlük. A Docker Hub az alapértelmezett nyilvános registry; a szervezetek gyakran magánregistryket használnak. A registryek azt biztosítják, hogy az image-ek megoszthatóak és telepíthetőek.
Mit csinál egy registry
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)
