Zveratko
Zveratko

Reputation: 2810

Docker container in different HW architecture

Is it possible to have same container on my pc and on raspberry(or any other architecture)?

The reason for this is that I want to develop some web app on pc and then just put it to raspberry or any other device running docker.What will be the compatibility issues? What limits the container from being used on another arch?

Can I somehow convert between armv7/armhf-ubuntu and plain official ubuntu based image?

Upvotes: 0

Views: 206

Answers (1)

user2915097
user2915097

Reputation: 32196

You can have the same Dockerfile, but you will need to build an image for each architecture.

When I say architecture, keep in mind that a Raspberry Pi, an Odroid from Hardkernel.com and a Beaglebone, are all "ARM", but are different, and will need specific images.

And of course, x86 and ARM are different.

Upvotes: 1

Related Questions