From dffbb67448563e0637966b2ef5b3e98202a79344 Mon Sep 17 00:00:00 2001 From: Takashi Takebayashi Date: Tue, 22 Apr 2025 11:12:49 +0900 Subject: [PATCH] Fix typo Azure container registry -> Azure Container Registry --- docs/azure/azure-deployment-using-github-actions.md | 10 +++++----- ...-deployment-entity-framework-core-github-actions.md | 2 +- docs/containers/container-tools-react.md | 4 ++-- docs/containers/container-tools.md | 2 +- docs/containers/hosting-web-apps-in-docker.md | 8 ++++---- docs/containers/includes/vs-2019/container-tools.md | 2 +- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/docs/azure/azure-deployment-using-github-actions.md b/docs/azure/azure-deployment-using-github-actions.md index 49fa491d1e7..c02ae66079e 100644 --- a/docs/azure/azure-deployment-using-github-actions.md +++ b/docs/azure/azure-deployment-using-github-actions.md @@ -98,11 +98,11 @@ These steps are appropriate if you have more than one project that uses Docker c If you choose to create a new one, you see this screen. Provide the resource group, SKU, and choose the same region, if possible, as before. For information about the SKUs for Azure Container Registry, see [Azure Container Registry service tiers](/azure/container-registry/container-registry-skus). - ![Screenshot showing a new Azure container registry that was just created.](./media/azure-deployment-using-github-actions/github-actions-create-azure-container-registry.png) + ![Screenshot showing a new Azure Container Registry that was just created.](./media/azure-deployment-using-github-actions/github-actions-create-azure-container-registry.png) Once created, the new registry shows on the screen. - ![Screenshot showing creating a new Azure container registry.](./media/azure-deployment-using-github-actions/github-actions-created-azure-container-registry.png) + ![Screenshot showing creating a new Azure Container Registry.](./media/azure-deployment-using-github-actions/github-actions-created-azure-container-registry.png) 1. The deployable projects in your solution are displayed; choose the projects you want to deploy together in the same Azure Container Apps instance. @@ -140,7 +140,7 @@ WebApi_buildImageAndDeploy: registry: ${{ env.CONTAINER_REGISTRY_LOGIN_SERVER }} username: ${{ secrets.registry20230810121555_USERNAME_6891 }} password: ${{ secrets.registry20230810121555_PASSWORD_6891 }} - - name: Build and push Docker image to Azure container registry + - name: Build and push Docker image to Azure Container Registry uses: docker/build-push-action@v4 with: push: true @@ -173,7 +173,7 @@ WebFrontEnd_buildImageAndDeploy: registry: ${{ env.CONTAINER_REGISTRY_LOGIN_SERVER }} username: ${{ secrets.registry20230810121555_USERNAME_2047 }} password: ${{ secrets.registry20230810121555_PASSWORD_2047 }} - - name: Build and push Docker image to Azure container registry + - name: Build and push Docker image to Azure Container Registry uses: docker/build-push-action@v4 with: push: true @@ -210,7 +210,7 @@ DOCKER_FILEPATH_WEBFRONTEND: docker/ComposeSample/WebFrontend/Dockerfile Use the values of these environment variables for the `file` parameter as follows: ```yml - - name: Build and push Docker image to Azure container registry + - name: Build and push Docker image to Azure Container Registry uses: docker/build-push-action@v4 with: push: true diff --git a/docs/azure/end-to-end-deployment-entity-framework-core-github-actions.md b/docs/azure/end-to-end-deployment-entity-framework-core-github-actions.md index b48ec165ef3..7a027cb3ce9 100644 --- a/docs/azure/end-to-end-deployment-entity-framework-core-github-actions.md +++ b/docs/azure/end-to-end-deployment-entity-framework-core-github-actions.md @@ -115,7 +115,7 @@ The publishing features of Visual Studio can handle creating these resources for - Select **Ok** to close the container apps environment dialog. - Select **Create** to close the original container apps dialog. Visual Studio creates the container app resource in Azure. 1. Once the resource is created, make sure it's selected in the list of container apps, and then select **Next**. -1. You'll need to create an Azure container registry to store the published image artifact for your app. Select the green **+** icon on the **Container Registry** screen. +1. You'll need to create an Azure Container Registry to store the published image artifact for your app. Select the green **+** icon on the **Container Registry** screen. :::image type="content" source="./media/end-to-end-deployment-entity-framework-core-github-actions/visual-studio-container-registry.png" lightbox="./media/end-to-end-deployment-entity-framework-core-github-actions/visual-studio-container-registry-large.png" alt-text="A screenshot showing how to create a new container registry."::: diff --git a/docs/containers/container-tools-react.md b/docs/containers/container-tools-react.md index 81e5e4aa63e..2c3f6d7dab3 100644 --- a/docs/containers/container-tools-react.md +++ b/docs/containers/container-tools-react.md @@ -384,7 +384,7 @@ Once the develop and debug cycle of the app is completed, you can create a produ 1. Select **Create**, and then select **Finish**. - ![Screenshot showing Select or create a new Azure container registry.](media/container-tools-react/vs-2019/publish-dialog2.png) + ![Screenshot showing Select or create a new Azure Container Registry.](media/container-tools-react/vs-2019/publish-dialog2.png) When the publish process ends, you can review the publish settings, and edit them, when needed, or publish the image again using the **Publish** button. @@ -420,7 +420,7 @@ Once the develop and debug cycle of the app is completed, you can create a produ 1. Select **Create**, and then select **Finish**. - ![Screenshot showing Select or create a new Azure container registry.](media/container-tools-react/vs-2022/publish-dialog-2.png) + ![Screenshot showing Select or create a new Azure Container Registry.](media/container-tools-react/vs-2022/publish-dialog-2.png) When the publish process ends, you can review the publish settings, and edit them, when needed, or publish the image again using the **Publish** button. diff --git a/docs/containers/container-tools.md b/docs/containers/container-tools.md index 490ea75ea4a..94d6a355474 100644 --- a/docs/containers/container-tools.md +++ b/docs/containers/container-tools.md @@ -134,7 +134,7 @@ Once the develop and debug cycle of the app is completed, you can create a produ 1. Choose **Create New Azure Container Registry**. - ![Screenshot of Publish dialog - choose Create a new Azure container registry.](media/container-tools/vs-2022/select-existing-or-create-new-azure-container-registry.png) + ![Screenshot of Publish dialog - choose Create a new Azure Container Registry.](media/container-tools/vs-2022/select-existing-or-create-new-azure-container-registry.png) 1. Fill in your desired values in the **Create a new Azure Container Registry**. diff --git a/docs/containers/hosting-web-apps-in-docker.md b/docs/containers/hosting-web-apps-in-docker.md index 0dd488c0181..633d72cdb46 100644 --- a/docs/containers/hosting-web-apps-in-docker.md +++ b/docs/containers/hosting-web-apps-in-docker.md @@ -63,7 +63,7 @@ The following steps guide you through creating a basic ASP.NET Core app that you 1. On the **Container Registry** tab, select the **Create a new Azure Container Registry** option at the bottom: - :::image type="content" source="media/container-tools/vs-2019/select-existing-or-create-new-azure-container-registry.png" border="false" alt-text="Screenshot of the Publish dialog that shows how to choose Create New Azure container registry."::: + :::image type="content" source="media/container-tools/vs-2019/select-existing-or-create-new-azure-container-registry.png" border="false" alt-text="Screenshot of the Publish dialog that shows how to choose Create New Azure Container Registry."::: 1. On the **Azure Container Registry** page, enter your values for the new resource: @@ -75,7 +75,7 @@ The following steps guide you through creating a basic ASP.NET Core app that you | **[SKU](/azure/container-registry/container-registry-skus)** | "Standard" | Select the service tier of the container registry. | | **Registry Location** | A nearby location | Choose a location in a [region](https://azure.microsoft.com/explore/global-infrastructure/geographies/) close to you or close to other services that you expect to use the container registry. | - :::image type="content" source="media/hosting-web-apps-in-docker/vs-azure-container-registry-provisioning-dialog-2019.png" border="false" alt-text="Screenshot that shows how to enter values in the dialog to create a new Azure container registry."::: + :::image type="content" source="media/hosting-web-apps-in-docker/vs-azure-container-registry-provisioning-dialog-2019.png" border="false" alt-text="Screenshot that shows how to enter values in the dialog to create a new Azure Container Registry."::: 1. After you enter the resource values, select **Create**. @@ -97,7 +97,7 @@ The following steps guide you through creating a basic ASP.NET Core app that you 1. On the **Registry** tab, select the **Create new** (+) option at the right: - :::image type="content" source="media/container-tools/vs-2022/select-existing-or-create-new-azure-container-registry.png" border="false" alt-text="Screenshot of the Publish dialog that shows how to choose Create New Azure container registry."::: + :::image type="content" source="media/container-tools/vs-2022/select-existing-or-create-new-azure-container-registry.png" border="false" alt-text="Screenshot of the Publish dialog that shows how to choose Create New Azure Container Registry."::: 1. Fill in your desired values in the **Azure Container Registry** screen. @@ -109,7 +109,7 @@ The following steps guide you through creating a basic ASP.NET Core app that you | **[SKU](/azure/container-registry/container-registry-skus)** | "Standard" | Select the service tier of the container registry. | | **Registry Location** | A nearby location | Choose a location in a [region](https://azure.microsoft.com/explore/global-infrastructure/geographies/) close to you or close to other services that you expect to use the container registry. | - :::image type="content" source="media/container-tools/vs-2022/vs-azure-container-registry-provisioning-dialog.png" border="false" alt-text="Screenshot that shows how to enter values in the dialog to create a new Azure container registry."::: + :::image type="content" source="media/container-tools/vs-2022/vs-azure-container-registry-provisioning-dialog.png" border="false" alt-text="Screenshot that shows how to enter values in the dialog to create a new Azure Container Registry."::: 1. After you enter the resource values, select **Create**. diff --git a/docs/containers/includes/vs-2019/container-tools.md b/docs/containers/includes/vs-2019/container-tools.md index 3b3dcd6280c..ea95a310fd0 100644 --- a/docs/containers/includes/vs-2019/container-tools.md +++ b/docs/containers/includes/vs-2019/container-tools.md @@ -98,7 +98,7 @@ Once the develop and debug cycle of the app is completed, you can create a produ 1. Choose **Create New Azure Container Registry**. - ![Screenshot of Publish dialog - choose Create a new Azure container registry.](../../media/container-tools/vs-2019/select-existing-or-create-new-azure-container-registry.png) + ![Screenshot of Publish dialog - choose Create a new Azure Container Registry.](../../media/container-tools/vs-2019/select-existing-or-create-new-azure-container-registry.png) 1. Fill in your desired values in the **Create a new Azure Container Registry**.