Vinayak Bachhav
Vinayak Bachhav

Reputation: 11

Running amd64 docker image on arm64

I am trying to run a amd64 based docker image on my arm64 based host platform. However, when I try to do so (with docker run) I get the following error

Error: standard_init_linux.go:219: exec user process caused: exec format error

Upvotes: 1

Views: 1941

Answers (1)

celeron533
celeron533

Reputation: 21

I am afraid you still need to compile the code for arm64 architecture and build your own docker file, then docker run it.

Upvotes: 1

Related Questions