Bir Docker registry, Docker image'larının depolanması ve dağıtılması için bir sistem — image'ları ona push (yükler) ve ondan pull (indir) edersiniz. Docker Hub varsayılan genel registry'dir; kuruluşlar genellikle özel registry'ler kullanır. Registry'ler image'ların nasıl paylaşıldığı ve dağıtıldığıdır.
Registry ne yapar
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)
