Skip to content

Commit 5872334

Browse files
authored
Merge pull request #104335 from dlepow/acrfix
[ACR] Portal create update
2 parents d100739 + 945da78 commit 5872334

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

articles/container-registry/container-registry-get-started-portal.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
title: Quickstart - Create registry in portal
33
description: Quickly learn to create a private Docker registry in Azure Container Registry with the Azure portal.
44
ms.topic: quickstart
5-
ms.date: 01/22/2019
5+
ms.date: 03/03/2020
66
ms.custom: "seodec18, mvc"
77
---
88
# Quickstart: Create a private container registry using the Azure portal
99

10-
An Azure container registry is a private Docker registry in Azure where you can store and manage your private Docker container images. In this quickstart, you create a container registry with the Azure portal. Then, use Docker commands to push a container image into the registry, and finally pull and run the image from your registry.
10+
An Azure container registry is a private Docker registry in Azure where you can store and manage private Docker container images and related artifacts. In this quickstart, you create a container registry with the Azure portal. Then, use Docker commands to push a container image into the registry, and finally pull and run the image from your registry.
1111

1212
To log in to the registry to work with container images, this quickstart requires that you are running the Azure CLI (version 2.0.55 or later recommended). Run `az --version` to find the version. If you need to install or upgrade, see [Install Azure CLI][azure-cli].
1313

@@ -23,21 +23,23 @@ Select **Create a resource** > **Containers** > **Container Registry**.
2323

2424
![Creating a container registry in the Azure portal][qs-portal-01]
2525

26-
Enter values for **Registry name** and **Resource group**. The registry name must be unique within Azure, and contain 5-50 alphanumeric characters. For this quickstart create a new resource group in the `West US` location named `myResourceGroup`, and for **SKU**, select 'Basic'. Select **Create** to deploy the ACR instance.
26+
In the **Basics** tab, enter values for **Resource group** and **Registry name**. The registry name must be unique within Azure, and contain 5-50 alphanumeric characters. For this quickstart create a new resource group in the `West US` location named `myResourceGroup`, and for **SKU**, select 'Basic'.
2727

2828
![Create container registry in the Azure portal][qs-portal-03]
2929

30+
Accept default values for the remaining settings. Then select **Review + create**. After reviewing the settings, select **Create**.
31+
3032
In this quickstart you create a *Basic* registry, which is a cost-optimized option for developers learning about Azure Container Registry. For details on available service tiers, see [Container registry SKUs][container-registry-skus].
3133

3234
When the **Deployment succeeded** message appears, select the container registry in the portal.
3335

3436
![Container registry Overview in the Azure portal][qs-portal-05]
3537

36-
Take note of the value of the **Login server**. You use this value in the following steps while working with your registry with the Azure CLI and Docker.
38+
Take note of the value of the **Login server**. You use this value in the following steps when you push and pull images with Docker.
3739

3840
## Log in to registry
3941

40-
Before pushing and pulling container images, you must log in to the ACR instance. Open a command shell in your operating system, and use the [az acr login][az-acr-login] command in the Azure CLI.(Specify only Container Name. Do not include 'azurecr.io')
42+
Before pushing and pulling container images, you must log in to the ACR instance. Open a command shell in your operating system, and use the [az acr login][az-acr-login] command in the Azure CLI. (Specify only the registry name when logging in. Don't include the 'azurecr.io' suffix.)
4143

4244
```azurecli
4345
az acr login --name <acrName>
@@ -51,7 +53,7 @@ The command returns `Login Succeeded` once completed.
5153

5254
To list the images in your registry, navigate to your registry in the portal and select **Repositories**, then select the repository you created with `docker push`.
5355

54-
In this example, we select the **hello-world** repository, and we can see the `v1`-tagged image under **TAGS**.
56+
In this example, we select the **hello-world** repository, and we can see the `v1`-tagged image under **Tags**.
5557

5658
![List container images in the Azure portal][qs-portal-09]
5759

-19.5 KB
Loading
49 KB
Loading
22.2 KB
Loading
14.7 KB
Loading
11 KB
Loading

0 commit comments

Comments
 (0)