Ubuntu18.04上的NVidia Jetson Nano完成了与standard_init_linux.go:211: exec user process caused "exec format error"
的docker运行,但一些图像运行得很好。
organic@jetson:~$ docker run -it --rm -p 8080:8080 django
Unable to find image 'django:latest' locally
latest: Pulling from library/django
75a822cd7888: Pull complete
e4665cede9d1: Pull complete
202a45aa091c: Pull complete
7799136eb561: Pull complete
7a7f9ca3fd40: Pull complete
412f2d081014: Pull complete
Digest: sha256:5bfd3f442952463f5bc97188b7f43cfcd6c2f631a017ee2a6fca3cb8992501e8
Status: Downloaded newer image for django:latest
standard_init_linux.go:211: exec user process caused "exec format error"
organic@jetson:~$ docker pull nginx:latest
latest: Pulling from library/nginx
Digest: sha256:50cf965a6e08ec5784009d0fccb380fc479826b6e0e65684d9879170a9df8566
Status: Image is up to date for nginx:latest
docker.io/library/nginx:latest
organic@jetson:~$ docker pull hello-world
Using default tag: latest
latest: Pulling from library/hello-world
be6e184261a6: Pull complete
Digest: sha256:4fe721ccc2e8dc7362278a29dc660d833570ec2682f4e4194f4ee23e415e1064
Status: Downloaded newer image for hello-world:latest
docker.io/library/hello-world:latest
发布于 2020-02-03 15:58:45
看起来docker run
命令可以很好地提取django
映像,但是运行部分失败了。
Django:latest
docker镜像是一个仅限x86-64
的镜像。但当你在Jetson Nano (Arm架构)上时,你应该找到(或构建)与arm64
兼容的docker镜像,而不是x86-64
。
示例中的其他两个命令在没有出现相同错误的情况下完成,它们只是执行拉出部分。但它们很可能仍然运行得很好,因为它们都是Arm64
兼容的。
您可以在dockerhub上的图像下找到标签。
https://stackoverflow.com/questions/59447538
复制相似问题