Skip to content

Commit 6ceb628

Browse files
Add query
1 parent fdfe196 commit 6ceb628

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

articles/container-apps/get-started.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Deploy your first application to Azure Container Apps Preview.
44
services: app-service
55
author: craigshoemaker
66
ms.service: app-service
7-
ms.topic: quickstart
7+
ms.topic: quickstart
88
ms.date: 10/21/2021
99
ms.author: cshoe
1010
ms.custom: ignite-fall-2021
@@ -193,7 +193,8 @@ az containerapp create \
193193
--environment $CONTAINERAPPS_ENVIRONMENT \
194194
--image mcr.microsoft.com/azuredocs/containerapps-helloworld:latest \
195195
--target-port 80 \
196-
--ingress 'external'
196+
--ingress 'external' \
197+
--query configuration.ingress.fqdn
197198
```
198199

199200
# [PowerShell](#tab/powershell)
@@ -205,14 +206,15 @@ az containerapp create `
205206
--environment $CONTAINERAPPS_ENVIRONMENT `
206207
--image mcr.microsoft.com/azuredocs/containerapps-helloworld:latest `
207208
--target-port 80 `
208-
--ingress 'external'
209+
--ingress 'external' `
210+
--query configuration.ingress.fqdn
209211
```
210212

211213
---
212214

213215
By setting `--ingress` to `external`, you make the container app available public requests.
214216

215-
The `create` command returns the container app's fully qualified domain name. Copy this location to a web browser and you'll see the following message.
217+
Here, the `create` command returns the container app's fully qualified domain name. Copy this location to a web browser and you'll see the following message.
216218

217219
:::image type="content" source="media/get-started/azure-container-apps-quickstart.png" alt-text="Your first Azure Container Apps deployment.":::
218220

0 commit comments

Comments
 (0)