একটি Docker registry হল Docker images-এর জন্য একটি স্টোরেজ এবং বিতরণ ব্যবস্থা — আপনি এতে images push করেন এবং এটি থেকে সেগুলি pull করেন। Docker Hub হল ডিফল্ট পাবলিক রেজিস্ট্রি; সংস্থাগুলি প্রায়ই প্রাইভেট রেজিস্ট্রি ব্যবহার করে। রেজিস্ট্রি হল কীভাবে 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)
