Registry
A registry stores Docker images so they can be downloaded again later.
This page explains how Docker images are named, tagged, pushed, pulled, and shared with registries like Docker Hub.
A registry stores Docker images so they can be downloaded again later.
Docker Hub is the most common public registry beginners use for official images and shared project images.
Without pushing to a registry, your image usually stays local to one machine only.
docker build -t my-app .
docker tag my-app yourname/my-app:1.0
docker push yourname/my-app:1.0docker pull yourname/my-app:1.0Another machine can now download the same image version and run it.
docker logindocker tagdocker pushdocker pullNext page: Lesson 16 covers Docker security basics before the final Phase 2 lesson on development vs production setup.