A 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)
