From 9cf62d008eff79dc3df37ae4a3f389db5a5aa5da Mon Sep 17 00:00:00 2001 From: Alex Mang Date: Thu, 26 Apr 2018 17:07:47 +0200 Subject: [PATCH] Removed protocol (https) from Azure CR server --- 100-windows.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/100-windows.md b/100-windows.md index 3c6f5f5..5d963b9 100644 --- a/100-windows.md +++ b/100-windows.md @@ -159,9 +159,9 @@ Install [GIT](https://git-scm.com/download/win) if not already installed on your az webapp create --name --resource-group myResourceGroup --plan myAppServicePlan --deployment-container-image-name /starterapp:latest ### Step 3: Configure web app to use ACR image -```az webapp config container set``` command to assign the custom Docker image to the web app. Replace , , , and . For Azure Container Registry, is in the format https://.azurecr.io. +```az webapp config container set``` command to assign the custom Docker image to the web app. Replace , , , and . For Azure Container Registry, is in the format .azurecr.io. - az webapp config container set --name --resource-group myResourceGroup --docker-custom-image-name myContainerRegistry.azurecr.io/starterapp --docker-registry-server-url https://myContainerRegistry.azurecr.io --docker-registry-server-user --docker-registry-server-password + az webapp config container set --name --resource-group myResourceGroup --docker-custom-image-name myContainerRegistry.azurecr.io/starterapp --docker-registry-server-url myContainerRegistry.azurecr.io --docker-registry-server-user --docker-registry-server-password ### Step 4 : Restart your app