ایک Docker registry Docker images کے لیے ایک storage اور distribution system ہے — آپ اسے images push کرتے ہیں اور اسے سے pull کرتے ہیں۔ Docker Hub default public 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)
