Skip to content

Commit b3bf71a

Browse files
committed
edit TOC and fix build warning
1 parent bac92f6 commit b3bf71a

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

articles/container-apps/TOC.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -139,12 +139,14 @@
139139
- name: Tutorials
140140
expanded: true
141141
items:
142+
- name: Deploy from an existing container image - CLI
143+
href: tutorial-deploy-first-app-cli.md
142144
- name: Build a multiple service app
143145
expanded: true
144146
items:
145-
- name: Deploy a backend microservice app
147+
- name: 1. Deploy a backend microservice app
146148
href: tutorial-code-to-cloud.md
147-
- name: Deploy a frontend microservice app
149+
- name: 1. Deploy a frontend microservice app
148150
href: communicate-between-microservices.md
149151
- name: Deploy microservices with Dapr
150152
expanded: true
@@ -155,8 +157,6 @@
155157
href: microservices-dapr-azure-resource-manager.md
156158
- name: Deploy a Dapr application using GitHub Actions
157159
href: dapr-github-actions.md
158-
- name: Deploy an app from an existing container image - CLI
159-
href: tutorial-deploy-first-app-cli.md
160160
- name: Background processing
161161
href: background-processing.md
162162
- name: Create an Azure Files storage mount

articles/container-apps/quickstart-code-to-cloud.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ In this quickstart, you create a backend web API service that returns a static c
2121
> [!NOTE]
2222
> You can also build and deploy this sample application using the `az containerapp up` command. For more information, see [Tutorial: Build and deploy your app to Azure Container Apps](tutorial-code-to-cloud.md).
2323
24-
The following screenshot shows the output from the album API service you'll deploy.
24+
The following screenshot shows the output from the album API service you deploy.
2525

2626
:::image type="content" source="media/quickstart-code-to-cloud/azure-container-apps-album-api.png" alt-text="Screenshot of response from albums API endpoint.":::
2727

articles/container-apps/tutorial-code-to-cloud.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This article demonstrates how to build and deploy a microservice to Azure Contai
1818
This tutorial is the first in a series of articles that walk you through how to use core capabilities within Azure Container Apps. The first step is to create a back end web API service that returns a static collection of music albums.
1919

2020
> [!NOTE]
21-
> You can also build and deploy this app using the [az containerapp up](/cli/azure/containerapp?view=azure-cli-latest#az_containerapp_up) by following the instructions in the [Quickstart: Build and deploy an app to Azure Container Apps from a repository](quickstart-code-to-cloud.md) article. The `az containerapp up` command is a fast and convenient way to build and deploy your app to Azure Container Apps using a single command. However, it doesn't provide the same level of customization for your container app.
21+
> You can also build and deploy this app using the [az containerapp up](/cli/azure/containerapp#az_containerapp_up) by following the instructions in the [Quickstart: Build and deploy an app to Azure Container Apps from a repository](quickstart-code-to-cloud.md) article. The `az containerapp up` command is a fast and convenient way to build and deploy your app to Azure Container Apps using a single command. However, it doesn't provide the same level of customization for your container app.
2222
2323
The next tutorial in the series will build and deploy the front end web application to Azure Container Apps.
2424

@@ -35,7 +35,7 @@ To complete this project, you need the following items:
3535
| Requirement | Instructions |
3636
|--|--|
3737
| Azure account | If you don't have one, [create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F). You need the *Contributor* or *Owner* permission on the Azure subscription to proceed. <br><br>Refer to [Assign Azure roles using the Azure portal](../role-based-access-control/role-assignments-portal.md?tabs=current) for details. |
38-
| GitHub Account | Sign-up for [free](https://github.com/join). |
38+
| GitHub Account | Sign up for [free](https://github.com/join). |
3939
| git | [Install git](https://git-scm.com/downloads) |
4040
| Azure CLI | Install the [Azure CLI](/cli/azure/install-azure-cli).|
4141

@@ -46,7 +46,7 @@ To complete this project, you need the following items:
4646
| Requirement | Instructions |
4747
|--|--|
4848
| Azure account | If you don't have one, [create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F). You need the *Contributor* or *Owner* permission on the Azure subscription to proceed. Refer to [Assign Azure roles using the Azure portal](../role-based-access-control/role-assignments-portal.md?tabs=current) for details. |
49-
| GitHub Account | Sign-up for [free](https://github.com/join). |
49+
| GitHub Account | Sign up for [free](https://github.com/join). |
5050
| git | [Install git](https://git-scm.com/downloads) |
5151
| Azure CLI | Install the [Azure CLI](/cli/azure/install-azure-cli).|
5252
| Docker Desktop | Docker provides installers that configure the Docker environment on [macOS](https://docs.docker.com/docker-for-mac/), [Windows](https://docs.docker.com/docker-for-windows/), and [Linux](https://docs.docker.com/engine/installation/#supported-platforms). <br><br>From your command prompt, type `docker` to ensure Docker is running. |
@@ -319,15 +319,15 @@ az containerapp create \
319319
--query properties.configuration.ingress.fqdn
320320
```
321321

322-
* By setting `--ingress` to `external`, your container app will be accessible from the public internet.
322+
* By setting `--ingress` to `external`, your container app is accessible from the public internet.
323323

324324
* The `target-port` is set to `3500` to match the port that the container is listening to for requests.
325325

326326
* Without a `query` property, the call to `az containerapp create` returns a JSON response that includes a rich set of details about the application. Adding a query parameter filters the output to just the app's fully qualified domain name (FQDN).
327327

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

330-
To create the container app, create template objects that you'll pass in as arguments to the `New-AzContainerApp` command.
330+
To create the container app, create template objects that you pass in as arguments to the `New-AzContainerApp` command.
331331

332332
Create a template object to define your container image parameters.
333333

@@ -339,7 +339,7 @@ $ImageParams = @{
339339
$TemplateObj = New-AzContainerAppTemplateObject @ImageParams
340340
```
341341

342-
You'll need run the following command to get your registry credentials.
342+
You need run the following command to get your registry credentials.
343343

344344
```azurepowershell
345345
$RegistryCredentials = Get-AzContainerRegistryCredential -Name $ACRName -ResourceGroupName $ResourceGroup
@@ -384,7 +384,7 @@ $MyApp = New-AzContainerApp @AppArgs
384384
$MyApp.IngressFqdn
385385
```
386386

387-
* By setting `IngressExternal` to `external`, your container app will be accessible from the public internet.
387+
* By setting `IngressExternal` to `external`, your container app is accessible from the public internet.
388388
* The `IngressTargetPort` parameter is set to `3500` to match the port that the container is listening to for requests.
389389

390390
---

0 commit comments

Comments
 (0)