1

IoT Edge from Microsoft uses docker for managing modules. Is it possible to run any docker container on a IoT Edge device?

moinster
  • 133
  • 6

1 Answers1

3

Yes, you can run any kind of docker-based container on IoT Edge as long as the image supports the architecture your Edge device uses (amd64, arm32, etc.) The container does not have to be aware of IoT Edge or even talk to the runtime. In this case the Edge runtime will simply make sure the container is up and running according to your settings.

silent
  • 14,494
  • 4
  • 46
  • 86