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