एक Docker registry Docker images को लागि एक भण्डारण र वितरण प्रणाली हो — तपाईंले यसमा images push गर्नुहुन्छ र यसबाट तिनीहरूलाई 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)
