Posts

Showing posts from August 15, 2018

Push Docker Images to Azure Container Registry (ACR)

Image
How to Push you custom Docker Images to Azure Container Registry? In this post, We will be going to see that how we can tag and push our custom docker images to ACR i.e. Azure Container Registry.  Azure CLI We are going to use Azure CLI during whole setup. So make sure you have Azure CLI installed and you are able to run "az" command. You can check your CLI version using | az --version | as below- If you don't have installed. you can download and install it from |https://docs.microsoft.com/en-us/cli/azure/install-azure-cli?view=azure-cli-latest|. Note - I am assuming here that - you have already logged in with Azure CLI. If you haven't, then please do that using |az login|. You have already created ACR in specific Resource Group. If not, then do that using |az group create [OPTIONS]|. Login to Azure Container Registry- Fetch name of ACR using command |az acr list -g {group_name} -o table|. Then, use command |az acr logi...