Sign inSign up

remonlam/registry

By remonlam

•Updated over 9 years ago

The Docker Registry 2.0 implementation for storing and distributing Docker images

Image
0

472

remonlam/registry repository overview

⁠Docker Registry

This is the Git clone of the official Docker image for distribution⁠.
See the Hub page for the full readme on how to use the Docker image and for information regarding contributing and issues.

⁠Build image yourself

Copy this repo to you're machine.
$ docker build -t registry:2.6.1 .

⁠Run a local registry

$ docker run -d -p 5000:5000 --restart always --name registry -v [/localpath/registry]:/var/lib/registry remonlam/registry:2.6.1

Now, use it from within Docker:

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

Tag summary

Content type

Image

Digest

Size

9.8 MB

Last updated

over 9 years ago

docker pull remonlam/registry