Reputation: 11
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
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