0

So, there are lots of Docker on PI questions out there but I'm looking todo it the other way, or run Raspberry PI in a Docker image running on x64 based platform. Are there any images built for this? Or, is my best bet to just setup a container to emulate Arm?

QueueHammer
  • 101
  • 3
  • The container technology was not created to do emulation although it can. There are some solutions for running with qemu. – João Alves Feb 15 '21 at 14:43
  • Yeah, my feeling was that it would likely be QEMU in a container to emulate ARM and then Running the PIE image inside. Hoping to exhaust all other possible options before going that route though. – QueueHammer Feb 15 '21 at 15:30

1 Answers1

1

AFAIK no docker containers exist for Raspberry Pi OS. However, you can convert the Raspberry Pi Desktop OS .iso file to a Docker container using docker import.

aklingam
  • 974
  • 4
  • 16