Docker registry என்பது Docker images களை சேமித்து விநியோகிக்கும் ஒரு அமைப்பு — நீங்கள் images களை அதற்கு push செய்து அதிலிருந்து pull செய்கிறீர்கள். Docker Hub என்பது முன்னிருப்பு பொது registry; பெரும்பாலான வழக்கமாக நிறுவனங்கள் தனியார் registries களைப் பயன்படுத்துகின்றன. Images களை பகிர்ந்து கொள்ளவும் স্থাপனை செய்யவும் Registries பயன்படுகின்றன.
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)
