Create an Azure private repository ACR Run container with AZ tools docker run -v ${env:UserProfile}:/azscripts -it azuresdk/azure-cli-python:latest Access to the container which contains the AZ Tools docker exec -it <container-ID> sh Login to Azure az login Execute the following command to create an ACR. az acr create --name <your_acr_name> --resource-group <your_resourcegroupName> --sku Basic Publish your images to ACR Open a new CMD locally and login to your ACR docker login -u <acr_user> -p <acr_pwd> <registry_server_name> Tag the image before publishing it to ACR docker tag <local_image_name> <registry_server_name>/<your_published_image_name> Push images to ACR docker push <registry_server_name>/<your_published_image_name>