Docker registry هي نظام تخزين وتوزيع لصور Docker — تقوم بـ push للصور إليها وpull منها. Docker Hub هي السجل العام الافتراضي؛ وغالباً ما تستخدم المؤسسات سجلات خاصة. السجلات هي الطريقة التي تُشارك بها الصور وتُنشر.
ما يفعله السجل
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)
