Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 974 Bytes

pull-an-image.md

File metadata and controls

33 lines (24 loc) · 974 Bytes
description keywords redirect_from title
Learn how to pull an image from Docker Trusted Registry.
docker, registry, images, pull
/docker-trusted-registry/quick-start/
/docker-trusted-registry/repos-and-images/pull-an-image/
Pull an image from DTR

Pulling an image from Docker Trusted Registry is the same as pulling an image from Docker Hub. Since DTR is secure by default, you always need to authenticate before pulling images.

In this example, DTR can be accessed at dtr.company.org, and the user was granted permissions to access the Java, Python, and Golang repositories.

Click on the repository to see its details.

To pull the 1.7 tag of the dave.lauper/golang image, run:

$ docker login dtr.company.org
$ docker pull dtr.company.org/dave.lauper/golang:1.7

Where to go next