Docker registry je sistem za shranjevanje in distribucijo Docker slik — push-aš slike vanj in jih pull-aš iz njega. Docker Hub je privzeta javna registry; organizacije pogosto uporabljajo zasebne registrije. Registrije so način, kako se slike delijo in razmeščajo.
Kaj registry počne
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)
