Een Docker registry is een opslag- en distributiessysteem voor Docker images — je pushed images ernaartoe en pulled ze eruit. Docker Hub is het standaard openbare registry; organisaties gebruiken vaak private registries. Registries zijn hoe images worden gedeeld en ingezet.
Wat een registry doet
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)
