Ένα Docker registry είναι ένα σύστημα αποθήκευσης και διανομής για Docker images — push images σε αυτό και pull από αυτό. Το Docker Hub είναι το προεπιλεγμένο δημόσιο registry. οι οργανισμοί συχνά χρησιμοποιούν ιδιωτικά registries. Τα registries είναι ο τρόπος με τον οποίο τα images κοινοποιούνται και αναπτύσσονται.
Τι κάνει ένα 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)
