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-apps/quickstart-code-to-cloud.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ In this quickstart, you create a backend web API service that returns a static c
21
21
> [!NOTE]
22
22
> 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).
23
23
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.
25
25
26
26
:::image type="content" source="media/quickstart-code-to-cloud/azure-container-apps-album-api.png" alt-text="Screenshot of response from albums API endpoint.":::
Copy file name to clipboardExpand all lines: articles/container-apps/tutorial-code-to-cloud.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ This article demonstrates how to build and deploy a microservice to Azure Contai
18
18
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.
19
19
20
20
> [!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.
22
22
23
23
The next tutorial in the series will build and deploy the front end web application to Azure Container Apps.
24
24
@@ -35,7 +35,7 @@ To complete this project, you need the following items:
35
35
| Requirement | Instructions |
36
36
|--|--|
37
37
| 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 | Signup for [free](https://github.com/join). |
| Azure CLI | Install the [Azure CLI](/cli/azure/install-azure-cli).|
41
41
@@ -46,7 +46,7 @@ To complete this project, you need the following items:
46
46
| Requirement | Instructions |
47
47
|--|--|
48
48
| 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 | Signup for [free](https://github.com/join). |
| Azure CLI | Install the [Azure CLI](/cli/azure/install-azure-cli).|
52
52
| 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 \
319
319
--query properties.configuration.ingress.fqdn
320
320
```
321
321
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.
323
323
324
324
* The `target-port` is set to `3500` to match the port that the container is listening to for requests.
325
325
326
326
* 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).
327
327
328
328
# [Azure PowerShell](#tab/azure-powershell)
329
329
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.
331
331
332
332
Create a template object to define your container image parameters.
0 commit comments