एक 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)
