Docker registar je sustav za pohranu i distribuciju Docker slika — gurate slike u njega i povlačite ih iz njega. Docker Hub je zadana javna registra; organizacije često koriste privatne registre. Registre su način na koji se slike dijele i postavljaju.
Što registar radi
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)
