「マイクロソフト系技術情報 Wiki」は、「Open棟梁Project」,「OSSコンソーシアム .NET開発基盤部会」によって運営されています。
ACRと略されることが多い、AzureのContainer Registry
Azure Cloud Shellで実行する例
hmsRgName=HmsRG AcrName=osscjpdevinfra az acr create --name $AcrName --resource-group $hmsRgName --sku Basic RegistryName=$(az acr show --name $AcrName --query loginServer --output tsv) echo $RegistryName
CMDで実行する例
az login set AcrName=osscjpdevinfra az acr show --name %AcrName% --query loginServer --output tsv for /f "usebackq delims=" %A in (`az acr show --name %AcrName% --query loginServer --output tsv`) do set RegistryName=%A set RegistryName echo %RegistryName% az acr login --name %RegistryName% docker pull mcr.microsoft.com/hello-world docker tag mcr.microsoft.com/hello-world %RegistryName%/hello-world:v1 docker push %RegistryName%/hello-world:v1 az acr repository list --name %RegistryName% --output table az acr repository show-tags --name %RegistryName% --repository hello-world --output table