Un registru Docker este un sistem de stocare și distribuție pentru imagini Docker — transmiți imagini către el și le preiei de la el. Docker Hub este registrul public implicit; organizațiile folosesc adesea registre private. Registrele sunt modul în care imaginile sunt partajate și implementate.
Ce face un registru
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)
