Difference between revisions of "Azure container registries"

From UVOO Tech Wiki
Jump to navigation Jump to search
(Created page with "https://learn.microsoft.com/en-us/azure/container-registry/container-registry-get-started-docker-cli?tabs=azure-cli ``` az acr repository list --name myregname --output table...")
 
(No difference)

Latest revision as of 18:59, 23 January 2023

https://learn.microsoft.com/en-us/azure/container-registry/container-registry-get-started-docker-cli?tabs=azure-cli

az acr repository list --name myregname --output table

az acr login --name myregname

docker pull mcr.microsoft.com/oss/nginx/nginx:1.15.5-alpine

docker tag mcr.microsoft.com/oss/nginx/nginx:1.15.5-alpine myregname.azurecr.io/test/nginx

docker push myregname.azurecr.io/test/nginx