You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When `show_output=True`, the output of the Docker build process is shown. Once the process finishes, the image has been created in the Azure Container Registry for your workspace. Once the image has been built, the location in your Azure Container Registry is displayed. The location returned isin the format`<acrinstance>.azurecr.io/package:<imagename>`. For example, `myml08024f78fd10.azurecr.io/package:20190827151241`.
114
+
When `show_output=True`, the output of the Docker build process is shown. Once the process finishes, the image has been created in the Azure Container Registry for your workspace. Once the image has been built, the location in your Azure Container Registry is displayed. The location returned isin the format`<acrinstance>.azurecr.io/package@sha256:<imagename>`. For example, `myml08024f78fd10.azurecr.io/package@sha256:20190827151241`.
115
115
116
116
> [!IMPORTANT]
117
117
> Save the location information, as it is used when deploying the image.
@@ -159,7 +159,7 @@ When `show_output=True`, the output of the Docker build process is shown. Once t
159
159
1. To create the web app, use the following command. Replace `<app-name>`with the name you want to use. Replace `<acrinstance>`and`<imagename>`with the values from returned `package.location` earlier:
160
160
161
161
```azurecli-interactive
162
-
az webapp create --resource-group myresourcegroup --plan myplanname --name <app-name>--deployment-container-image-name <acrinstance>.azurecr.io/package:<imagename>
162
+
az webapp create --resource-group myresourcegroup --plan myplanname --name <app-name>--deployment-container-image-name <acrinstance>.azurecr.io/package@sha256:<imagename>
163
163
```
164
164
165
165
This command returns information similar to the following JSON document:
@@ -188,7 +188,7 @@ When `show_output=True`, the output of the Docker build process is shown. Once t
188
188
1. To provide the web app with the credentials needed to access the container registry, use the following command. Replace `<app-name>`with the name you want to use. Replace `<acrinstance>`and`<imagename>`with the values from returned `package.location` earlier. Replace `<username>`and`<password>`with the ACR login information retrieved earlier:
0 commit comments