Abdullah Şamil Güser

Container Registry

What are Container Registries?

Publish to Docker Hub

# login to Docker Hub
docker login -u <username> -p <password>

# tag the image previously built
docker tag my_image k8sacademy/my_image:latest

# push the image
docker push k8sacademy/my_image:latest

# pull the image
docker pull k8sacademy/my_image:latest

See L10-03 Push Express site to Docker Hub for more details.