एक Docker registry Docker images के लिए एक storage और distribution system है — आप images को इसमें push करते हैं और इससे उन्हें pull करते हैं। Docker Hub डिफ़ॉल्ट सार्वजनिक registry है; संगठन अक्सर private registries का उपयोग करते हैं। Registries ही वह तरीका हैं जिससे images साझा और deploy की जाती हैं।
एक 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)
