Unable to run x86 docker
See original GitHub issueHi,
I have created docker image as mentioned here https://github.com/neuralet/neuralet/tree/master/applications/smart-distancing for x86, but after creating the image, the docker run is not working.
I’m getting error:
Unable to find image 'neuralnet/x86_64:applications-smart-distancing' locally
docker: Error response from daemon: pull access denied for neuralnet/x86_64, repository does not exist or may require 'docker login': denied: requested access to the resource is denied.
I have cloned the neuralnet repo and tried docker commands for x86 on Ubuntu 18.04. Are there any other steps to make this work? Or any prerequisites for x86?
Here is my machine configuration:
OS: Ubuntu 18.04 GPU: Nvidia GeForce GTX 1050 Ti
Please help.
Thanks, Archana
Issue Analytics
- State:
- Created 3 years ago
- Comments:13 (7 by maintainers)
Top Results From Across the Web
Run x86 (Intel) and ARM based images on Apple Silicon (M1 ...
Being an Apple customer, I am wondering if use a Mac Mini M1, do ALL Docker images run as expected? Does this happen...
Read more >Unable to run x86 docker · Issue #71 · galliot-us/neuralet
I'm getting error: Unable to find image 'neuralnet/x86_64:applications-smart-distancing' locally docker: Error response from daemon: pull access ...
Read more >How can I build a docker image to run x86 software on an ...
No, not really. Docker uses the host's kernel. You can't run x86 with a linux kernel compiled for ARM. The suggestions of using...
Read more >But does it support running x86 Docker images using ...
Docker for Mac runs a VM, inside that VM (which is Linux for ARM) if you run an x86_64 docker image it will...
Read more >I can set up an arm64 docker image, but can't run anything
I need to do some things in an Oracle Linux 8 arm64 docker container. I installed docker and qemu: $ sudo yum install...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thank you @alpha-carinae29 , @JsonSadler , @mdegans and @mhejrati After applying all your solutions, I used below command and finally it worked 👍
docker run -it --runtime nvidia --privileged -p 8000:8000 -v /home/archana/neuralet/:/repo neuralet/x86_64:applications-smart-distancing
I appreciate your quick responses and appropriate solutions 👍
@mhejrati Please notice that the
latest-py3
tensorflow image doesn’t contain CUDA and uses CPU only. I suggest replacing it withlatest-gpu-py3
.https://github.com/neuralet/neuralet/blob/8b1d6fb811225dcdf4485074c1897741445e6d5c/applications/smart-distancing/Dockerfile-x86#L1