Ett Docker-register är ett lagrings- och distribueringssystem för Docker images — du pushar images till det och pullar dem från det. Docker Hub är det standardöppna registret; organisationer använder ofta privata register. Register är hur images delas och distribueras.
Vad ett register gör
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)
