Skip to content

Commit bf924b2

Browse files
committed
more edits
1 parent 27b9aa0 commit bf924b2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ To complete this project, you'll need the following items:
2929
| Requirement | Instructions |
3030
|--|--|
3131
| 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. |
32-
| GitHub Account | Sign up for [free](https://github.com/join). |
32+
| GitHub Account | Get an account for [free](https://github.com/join). |
3333
| git | [Install git](https://git-scm.com/downloads) |
3434
| Azure CLI | Install the [Azure CLI](/cli/azure/install-azure-cli).|
3535

@@ -40,7 +40,7 @@ To complete this project, you'll need the following items:
4040
| Requirement | Instructions |
4141
|--|--|
4242
| 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. |
43-
| GitHub Account | Sign up for [free](https://github.com/join). |
43+
| GitHub Account | Get an account for [free](https://github.com/join). |
4444
| git | [Install git](https://git-scm.com/downloads) |
4545
| Azure CLI | Install the [Azure CLI](/cli/azure/install-azure-cli).|
4646
| 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. |
@@ -316,11 +316,11 @@ az containerapp create \
316316

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

319-
* Without a `query` property, the call to `az containerapp create` returns a JSON response that includes a rich set of details about the application. By adding a query, this command filters the response down to just the app's fully qualified domain name (FQDN).
319+
* 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).
320320

321321
# [Azure PowerShell](#tab/azure-powershell)
322322

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

325325
Create a template object to define your container image parameters.
326326

@@ -332,7 +332,7 @@ $ImageParams = @{
332332
$TemplateObj = New-AzContainerAppTemplateObject @ImageParams
333333
```
334334

335-
You will need run the following command to get your registry credentials.
335+
You'll need run the following command to get your registry credentials.
336336

337337
```azurepowershell
338338
$RegistryCredentials = Get-AzContainerRegistryCredential -Name $ACRName -ResourceGroupName $ResourceGroup

0 commit comments

Comments
 (0)