Welcome to the Image Registry

In order to begin pushing images to the registry, you need to create a project.

New project

Images by project

Images pushed recently

No images pushed

In order to begin pushing images to the registry, use the commands below.

Docker commands

Log into the registry:

Your login credentials do not give you access to use the docker registry from the command line.
$ sudo docker login -p {{settings.registry.password}} -e unused -u unused {{settings.registry.host}}

Push an image:

$ sudo docker tag myimage {{settings.registry.host}}/project/name:tag
$ sudo docker push {{settings.registry.host}}/project/name

Pull an image:

$ sudo docker pull {{settings.registry.host}}/project/name:tag