Skip to content

Commit e277798

Browse files
committed
Fix typo
Azure container registry -> Azure Container Registry
1 parent 2155d2f commit e277798

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/iot-edge/tutorial-develop-for-linux-on-windows.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ In this tutorial, you learn how to:
3030
>
3131
> * Set up your development machine.
3232
> * Use IoT Edge development tools to create a new project.
33-
> * Build your project as a container and store it in an Azure container registry.
33+
> * Build your project as a container and store it in an Azure Container Registry.
3434
> * Deploy your code to an IoT Edge device.
3535
3636
## Prerequisites
@@ -424,14 +424,14 @@ Use the module's Dockerfile to build the module's Docker image:
424424
docker build --rm -f "<DockerFilePath>" -t <ImageNameAndTag> "<ContextPath>"
425425
```
426426

427-
For example, assume that your command shell is in your project directory and your module name is `IotEdgeModule1`. To build the image for the local registry or an Azure container registry, use the following commands:
427+
For example, assume that your command shell is in your project directory and your module name is `IotEdgeModule1`. To build the image for the local registry or an Azure Container Registry, use the following commands:
428428

429429
```bash
430430
# Build the image for the local registry
431431

432432
docker build --rm -f "./IotEdgeModule1/Dockerfile.amd64.debug" -t localhost:5000/iotedgemodule1:0.0.1-amd64 "./IotEdgeModule1"
433433

434-
# Or build the image for an Azure container registry
434+
# Or build the image for an Azure Container Registry
435435

436436
docker build --rm -f "./IotEdgeModule1/Dockerfile.amd64.debug" -t myacr.azurecr.io/iotedgemodule1:0.0.1-amd64 "./IotEdgeModule1"
437437
```
@@ -449,7 +449,7 @@ For example:
449449

450450
docker push localhost:5000/iotedgemodule1:0.0.1-amd64
451451

452-
# Or push the Docker image to an Azure container registry
452+
# Or push the Docker image to an Azure Container Registry
453453
az acr login --name myacr
454454
docker push myacr.azurecr.io/iotedgemodule1:0.0.1-amd64
455455
```
@@ -460,7 +460,7 @@ In Visual Studio, open the `deployment.debug.template.json` deployment manifest
460460

461461
Before deployment, you need to update your Azure Container Registry credentials, your module images, and the proper `createOptions` values. For more information about `createOption` values, see [How to configure container create options for IoT Edge modules](how-to-use-create-options.md).
462462

463-
1. If you're using an Azure container registry to store your module image, add your credentials to `deployment.debug.template.json` in the `edgeAgent` settings. For example:
463+
1. If you're using an Azure Container Registry to store your module image, add your credentials to `deployment.debug.template.json` in the `edgeAgent` settings. For example:
464464

465465
```json
466466
"modulesContent": {

0 commit comments

Comments
 (0)