Skip to content

Commit be672c1

Browse files
committed
Minor fixes.
1 parent 47adf95 commit be672c1

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

articles/container-apps/azure-portal-console-zone-pivot-groups.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ groups:
88
- id: portal
99
title: Azure portal
1010
- id: console
11-
title: Console
11+
title: Console

articles/container-apps/managed-identity-image-pull.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,6 @@ $UserAssignedIdentityName = '<YOUR_USER_ASSIGNED_IDENTITY_NAME>'
686686
$LogAnalyticsWorkspaceName = '<YOUR_LOG_ANALYTICS_WORKSPACE_NAME>'
687687
$AppInsightsName = '<YOUR_LOG_ANALYTICS_WORKSPACE_NAME>'
688688
$AcrPullDefinitionId = '7f951dda-4ed3-4680-a7ca-43fe172d538d'
689-
690689
```
691690

692691
---
@@ -700,7 +699,12 @@ If you don't already have a container registry, you can create it with the follo
700699
# [Azure CLI](#tab/azure-cli)
701700

702701
```azurecli
703-
az acr create --name "$CONTAINER_REGISTRY_NAME" --resource-group "$RESOURCE_GROUP" --location "$LOCATION" --sku Basic --admin-enabled true
702+
az acr create \
703+
--name "$CONTAINER_REGISTRY_NAME" \
704+
--resource-group "$RESOURCE_GROUP" \
705+
--location "$LOCATION" \
706+
--sku Basic \
707+
--admin-enabled true
704708
```
705709

706710
# [Azure PowerShell](#tab/azure-powershell)
@@ -718,7 +722,9 @@ Push your image to the container registry with the following command.
718722
# [Azure CLI](#tab/azure-cli)
719723

720724
```azurecli
721-
az acr build --registry "$CONTAINER_REGISTRY_NAME" --image "$CONTAINER_REGISTRY_IMAGE_NAME:$CONTAINER_REGISTRY_IMAGE_TAG" "$CONTAINER_REGISTRY_IMAGE_URL"
725+
az acr build \
726+
--registry "$CONTAINER_REGISTRY_NAME" \
727+
--image "$CONTAINER_REGISTRY_IMAGE_NAME:$CONTAINER_REGISTRY_IMAGE_TAG" "$CONTAINER_REGISTRY_IMAGE_URL"
722728
```
723729

724730
# [Azure PowerShell](#tab/azure-powershell)

0 commit comments

Comments
 (0)