Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 913 Bytes

container-registry-quickstart-docker-pull.md

File metadata and controls

37 lines (28 loc) · 913 Bytes
title description services author ms.service ms.topic ms.date ms.author ms.custom
include file
include file
container-registry
dlepow
container-registry
include
08/04/2020
danlep
include file

Run image from registry

Now, you can pull and run the hello-world:v1 container image from your container registry by using docker run:

docker run <login-server>/hello-world:v1  

Example output:

Unable to find image 'mycontainerregistry.azurecr.io/hello-world:v1' locally
v1: Pulling from hello-world
Digest: sha256:662dd8e65ef7ccf13f417962c2f77567d3b132f12c95909de6c85ac3c326a345
Status: Downloaded newer image for mycontainerregistry.azurecr.io/hello-world:v1

Hello from Docker!
This message shows that your installation appears to be working correctly.

[...]