Reesd Images is a hosted private Docker registry. It is currently in alpha.
Reesd Images is running at images.reesd.com
and can used with the docker
executable.
The first time you upload an image, you will be prompted for a username, a password, and an email address. You can also log into the registry prior to upload with docker login
.
> docker login images.reesd.com
Username: foo
Password:
Email: [email protected]
Account created. Please see the documentation of the registry https://images.reesd.com/v1/ for instructions how to activate it.
Note: your credentials are save by docker
in the file ~/.dockercfg
so you don't have to enter them again.
To upload an image to Reesd Images, you have to create it with a tag like images.reesd.com/username/repository
and use that name with docker push
. For instance:
> $ docker run -d ubuntu touch /somefile
0e277ba39cdcb78b2f69d7a0c489199c7068723cfa3d3878c8908827040eb002
> docker commit 0e277ba39cdc images.reesd.com/foo/bar
27f41a278d7bf532f9ce53d9a9aded5491b06cd68898525d88f863e50b754272
> docker push images.reesd.com/foo/bar
The push refers to a repository [images.reesd.com/noteed/u] (len: 1)
Sending image list
Pushing repository images.reesd.com/noteed/u (1 tags)
Image 511136ea3c5a already pushed, skipping
Image 6170bb7b0ad1 already pushed, skipping
Image 9cd978db300e already pushed, skipping
27f41a278d7b: Image successfully pushed
Pushing tag for rev [27f41a278d7b] on {https://images.reesd.com/v1/repositories/foo/bar/tags/latest}