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
Copy file name to clipboardExpand all lines: articles/container-instances/container-instances-quickstart-portal.md
+27-10Lines changed: 27 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ ms.author: tomcassidy
6
6
author: tomvcassidy
7
7
ms.service: container-instances
8
8
services: container-instances
9
-
ms.date: 06/17/2022
9
+
ms.date: 07/26/2022
10
10
ms.custom: mvc, devx-track-js, mode-ui
11
11
---
12
12
@@ -26,34 +26,51 @@ If you don't have an Azure subscription, create a [free account][azure-free-acco
26
26
27
27
## Create a container instance
28
28
29
-
Select the **Create a resource** >**Containers** > **Container Instances**.
29
+
On the Azure portal homepage, select**Create a resource**.
30
30
31
-
:::image type="content" source="media/container-instances-quickstart-portal/qs-portal-01.png" alt-text="Begin creating a new container instance in the Azure portal":::
31
+
:::image type="content" source="media/container-instances-quickstart-portal/quickstart-portal-create-resource.png" alt-text="Screenshot showing how to begin creating a new container instance in the Azure portal.":::
32
32
33
-
On the **Basics** page, enter the following values in the **Resource group**, **Container name**, and **Container image** text boxes. Leave the other values at their defaults, then select **OK**.
33
+
Select **Containers** > **Container Instances**.
34
+
35
+
:::image type="content" source="media/container-instances-quickstart-portal/qs-portal-01.png" alt-text="Screenshot showing how to select a new container instance that you want to create in the Azure portal.":::
36
+
37
+
On the **Basics** page, choose a subscription and enter the following values for **Resource group**, **Container name**, **Image source**, and **Container image**.
:::image type="content" source="media/container-instances-quickstart-portal/qs-portal-03.png" alt-text="Configuring basic settings for a new container instance in the Azure portal":::
41
45
42
-
For this quickstart, you use default settings to deploy the public Microsoft `aci-helloworld` image. This sample Linux image packages a small web app written in Node.js that serves a static HTML page. You can also bring your own container images stored in Azure Container Registry, Docker Hub, or other registries.
46
+
> [!NOTE]
47
+
> For this quickstart, you use default settings to deploy the public Microsoft `aci-helloworld:latest` image. This sample Linux image packages a small web app written in Node.js that serves a static HTML page. You can also bring your own container images stored in Azure Container Registry, Docker Hub, or other registries.
48
+
49
+
Leave the other values as their defaults, then select **Next: Networking**.
43
50
44
51
On the **Networking** page, specify a **DNS name label** for your container. The name must be unique within the Azure region where you create the container instance. Your container will be publicly reachable at `<dns-name-label>.<region>.azurecontainer.io`. If you receive a "DNS name label not available" error message, try a different DNS name label.
45
52
53
+
An auto-generated hash is added as a DNS name label to your container instance's fully qualified domain name (FQDN), which prevents malicious subdomain takeover. Specify the **DNS name label scope reuse** for the FQDN. You can choose one of these options:
54
+
55
+
* Tenant
56
+
* Subscription
57
+
* Resource Group
58
+
* No reuse
59
+
* Any reuse (This option is the least secure.)
60
+
61
+
For this example, select **Tenant**.
62
+
46
63
:::image type="content" source="media/container-instances-quickstart-portal/qs-portal-04.png" alt-text="Configuring network settings for a new container instance in the Azure portal":::
47
64
48
-
Leave the other settings at their defaults, then select **Review + create**.
65
+
Leave all other settings as their defaults, then select **Review + create**.
49
66
50
67
When the validation completes, you're shown a summary of the container's settings. Select **Create** to submit your container deployment request.
51
68
52
69
:::image type="content" source="media/container-instances-quickstart-portal/qs-portal-05.png" alt-text="Settings summary for a new container instance in the Azure portal":::
53
70
54
-
When deployment starts, a notification appears to indicate the deployment is in progress. Another notification is displayed when the container group has been deployed.
71
+
When deployment starts, a notification appears that indicates the deployment is in progress. Another notification is displayed when the container group has been deployed.
55
72
56
-
Open the overview for the container group by navigating to **Resource Groups** > **myresourcegroup** > **mycontainer**. Take note of the **FQDN**(the fully qualified domain name) of the container instance, as well its **Status**.
73
+
Open the overview for the container group by navigating to **Resource Groups** > **myresourcegroup** > **mycontainer**. Make a note of the **FQDN** of the container instance and its **Status**.
57
74
58
75
:::image type="content" source="media/container-instances-quickstart-portal/qs-portal-06.png" alt-text="Container group overview in the Azure portal":::
59
76
@@ -67,7 +84,7 @@ Congratulations! By configuring just a few settings, you've deployed a publicly
67
84
68
85
Viewing the logs for a container instance is helpful when troubleshooting issues with your container or the application it runs.
69
86
70
-
To view the container's logs, under **Settings**, select **Containers**, then**Logs**. You should see the HTTP GET request generated when you viewed the application in your browser.
87
+
To view the container's logs, under **Settings**, select **Containers** >**Logs**. You should see the HTTP GET request generated when you viewed the application in your browser.
71
88
72
89
:::image type="content" source="media/container-instances-quickstart-portal/qs-portal-11.png" alt-text="Container logs in the Azure portal":::
0 commit comments