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
@@ -222,7 +221,7 @@ In Visual Studio Code, open the *deployment.debug.template.json* deployment mani
222
221
...
223
222
```
224
223
225
-
1. Add or replace the following stringified content to the *createOptions* value for each system (edgeHub and edgeAgent) and custom module (for example, filtermodeule) listed. Change the values if necessary.
224
+
1. Add or replace the following stringified content to the *createOptions* value for each system (edgeHub and edgeAgent) and custom module (for example, filtermodule) listed. Change the values if necessary.
@@ -256,7 +255,7 @@ In Visual Studio Code, open the *deployment.debug.template.json* deployment mani
256
255
You can check your container status from your device or virtual machine by running the `docker ps` command in a terminal. You should see your container listed after running the command. If your Visual Studio Code and IoT Edge runtime are running on the same machine, you can also check the status in the Visual Studio Code Docker view.
257
256
258
257
> [!IMPORTANT]
259
-
> If you're using a private registry like Azure Container Registry (ACR) for your images, you may need to authenticate to push images. Use `docker login <ACR login server>` or `az acr login --name <ACR name>` to authenticate.
258
+
> If you're using a private registry like Azure Container Registry for your images, you may need to authenticate to push images. Use `docker login <Azure Container Registry login server>` or `az acr login --name <Azure Container Registry name>` to authenticate.
260
259
261
260
::: zone-end
262
261
<!--vscode end-->
@@ -267,18 +266,18 @@ You can check your container status from your device or virtual machine by runni
267
266
268
267
Provide your container registry credentials to Docker so that it can push your container image to storage in the registry.
269
268
270
-
1. Sign in to Docker with the Azure Container Registry (ACR) credentials that you saved after creating the registry.
269
+
1. Sign in to Docker with the Azure Container Registry credentials that you saved after creating the registry.
You may receive a security warning recommending the use of `--password-stdin`. While that's a recommended best practice for production scenarios, it's outside the scope of this tutorial. For more information, see the [docker login](https://docs.docker.com/engine/reference/commandline/login/#provide-a-password-using-stdin) reference.
277
276
278
277
1. Sign in to the Azure Container Registry. You may need to [Install Azure CLI](/cli/azure/install-azure-cli) to use the `az` command. This command asks for your user name and password found in your container registry in **Settings** > **Access keys**.
279
278
280
279
```azurecli
281
-
az acr login -n <ACR registry name>
280
+
az acr login -n <Azure Container Registry name>
282
281
```
283
282
>[!TIP]
284
283
>If you get logged out at any point in this tutorial, repeat the Docker and Azure Container Registry sign in steps to continue.
@@ -291,7 +290,7 @@ Use the module's Dockerfile to [build](https://docs.docker.com/engine/reference/
Use the [IoT Edge Azure CLI set-modules](/cli/azure/iot/edge#az-iot-edge-set-modules) command to deploy the modules to the Azure IoT Hub. For example, to deploy the modules defined in the *deployment.debug.template.json* file to IoT Hub *my-iot-hub* for the IoT Edge device *my-device*, use the following command:
327
326
@@ -380,7 +379,7 @@ The Docker and Moby engines support SSH connections to containers allowing you t
380
379
edgeAgent
381
380
```
382
381
383
-
1. In the *.Visual Studio Code* directory, add a new configuration to **launch.json** by opening the file in Visual Studio Code. Select **Add configuration** then choose the matching remote attach template for your module. For example, the following configuration is for .NET Core. Change the value for the *-H* parameter in *PipeArgs* to your device DNS name or IP address.
382
+
1. In the *.vscode* directory, add a new configuration to **launch.json** by opening the file in Visual Studio Code. Select **Add configuration** then choose the matching remote attach template for your module. For example, the following configuration is for .NET Core. Change the value for the *-H* parameter in *PipeArgs* to your device DNS name or IP address.
Copy file name to clipboardExpand all lines: articles/iot-edge/tutorial-deploy-custom-vision.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
@@ -180,7 +180,7 @@ Currently, Visual Studio Code can develop modules for Linux AMD64 and Linux ARM3
180
180
181
181
### Add your image classifier
182
182
183
-
The Python module template in Visual Studio code contains some sample code that you can run to test IoT Edge. You won't use that code in this scenario. Instead, use the steps in this section to replace the sample code with the image classifier container that you exported previously.
183
+
The Python module template in Visual Studio Code contains some sample code that you can run to test IoT Edge. You won't use that code in this scenario. Instead, use the steps in this section to replace the sample code with the image classifier container that you exported previously.
184
184
185
185
1. In your file explorer, browse to the Custom Vision package that you downloaded and extracted. Copy all the contents from the extracted package. It should be two folders, **app** and **azureml**, and two files, **Dockerfile** and **README**.
Copy file name to clipboardExpand all lines: articles/iot-edge/tutorial-develop-for-linux-on-windows.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -172,7 +172,7 @@ The second step is to configure the EFLOW virtual machine Docker engine to accep
172
172
172.31.24.105
173
173
```
174
174
175
-
1. Using the obtained IP address, connect to the EFLOW VM Docker engine, and run the Hello-World sample container.Replace \<EFLOW-VM-IP\> with the EFLOW VM IP address obtained in the previous step.
175
+
1. Using the obtained IP address, connect to the EFLOW VM Docker engine, and run the Hello-World sample container.Replace \<EFLOW-VM-IP\> with the EFLOW VM IP address obtained in the previous step.
176
176
```powershell
177
177
docker -H tcp://<EFLOW-VM-IP>:2375 run --rm hello-world
178
178
```
@@ -252,7 +252,7 @@ The IoT Edge extension defaults to the latest stable version of the IoT Edge run
252
252
1. Re-generate your deployment manifest with the new runtime version. Right-click the name of your project and select **Generate deployment for IoT Edge**.
253
253
254
254
> [!WARNING]
255
-
> If you are chaging the IoT Edge runtime version, make sure the _deploymnet templates_ reflect the necessary changes. Currently there's a known issue with Azure IoT Edge Tools, that won't change the _"schemVersion"_ inside the _"properties.desired"_ object of _"$edgeHub"_ module (last section of the json file).
255
+
> If you are changing the IoT Edge runtime version, make sure the _deployment templates_ reflect the necessary changes. Currently, there's a known issue with Azure IoT Edge Tools that won't change the _"schemVersion"_ inside the _"properties.desired"_ object of _"$edgeHub"_ module (last section of the json file).
256
256
257
257
258
258
### Set up Visual Studio 2019 remote Docker engine instance
0 commit comments