Skip to content

working with docker registry

Rahul Sharma edited this page Apr 15, 2016 · 3 revisions

Logging-in to the registry

$ docker login localhost:5000
Username: user1
Password: 
Email: test@test.com

Tag and push an image

$ docker tag ubuntu localhost:5000/xyz
$ docker push localhost:5000/xyz

To pull an image from registry

$ docker pull localhost:5000/xyz