Azure IoT Edge
An Azure service that is used to deploy cloud workloads to run on internet of things (IoT) edge devices via standard containers.
406 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi, i want to ask some questions about IoT edge, i have write a program base on node-red, and sometime need to update the program remotely, so i choose IoT edge device instead of iot device. So i wonder can i run node red with docker run with IoT edge device
Thank for your support
Hi there, there is a Node Red module for Azure IoT Edge. You can find it (and the install instructions) right here.
I see, that clarifies it. Yes, you can, but you'll have to publish your own module to for instance Azure Container Registry. The strategy is as follows:
/node-red
folder on your device, into a new project.FROM <image>
, where image is the noderededgemodule image you use on your device.COPY
the flow file to the/data
folderthank for your support, i will look at it, its seem what i need