Welcome to the Image Registry

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

New project

Images pushed recently

No images pushed

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

Login 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}}

Log into OpenShift command line tools:

$ oc login --token {{settings.registry.password}} {{settings.registry.openshifthost}}

Image commands

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