Questions tagged [nvidia-docker]

nvidia-docker is a thin wrapper on top of docker and act as a drop-in replacement for the docker command line interface. This is required as a convenience to automatically detect and setup GPU containers leveraging NVIDIA hardware. nvidia-docker calls docker and relies on the NVIDIA Docker plugin to discover driver files and GPU devices.

nvidia-docker is a thin wrapper on top of docker and act as a drop-in replacement for the docker command line interface. This is required as a convenience to automatically detect and setup GPU containers leveraging NVIDIA hardware. nvidia-docker calls docker and relies on the NVIDIA Docker plugin to discover driver files and GPU devices.

Source: Nvidia

264 questions
0
votes
0 answers

nvidia-docker for aws cloudformation template. Ec2 instances keep shutting down

I have made changes to the docker for aws cloudformation template to change the ami to https://aws.amazon.com/marketplace/pp/Amazon-Web-Services-Deep-Learning-AMI-Ubuntu-1604/B077GCH38C for the availability of nvidia docker and changed the instance…
0
votes
1 answer

CUDA cudaErrorInsufficientDriver error when running an CuFFT in docker

i was doing some CUFFT routine in docker and faced some problem. I use the following Dockerfile. FROM nvidia/cuda:9.1-runtime-ubuntu16.04 ENV NVIDIA_VISIBLE_DEVICES all ENV LD_LIBRARY_PATH /usr/local/cuda-9.1/lib64/ FROM python:3.7 COPY --from=0…
aleks
  • 77
  • 4
0
votes
1 answer

nvidia-docker: Unknown runtime specified nvidia

I've looked up older answers on this which did not help (#1, #2) I'm getting this error when trying to launch a docker-compose projcet with a container that has the runtime: nvidia flag. Following the latest instructions, I installed docker (version…
bluesummers
  • 11,365
  • 8
  • 72
  • 108
0
votes
1 answer

How to point to initial runtime when restarting an existing docker container

I would like to restart a docker container, after exiting it and rebooting, with the same runtime with which it was initially created. Here's what I did so far. Create the container: sudo docker run --runtime=nvidia [...] Restart Docker after…
plugz
  • 1
  • 3
0
votes
1 answer

ModuleNotFoundError: No module named 'tensorrt'

Steps to recreate: nvidia-docker run --rm nvcr.io/nvidia/pytorch:19.05-py3 python3 -c "import tensorrt" Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'tensorrt' Other potentially useful…
Bilal Siddiqui
  • 349
  • 3
  • 17
0
votes
1 answer

Is nvidia tensorflow docker image available with python 3.6 or 3.7?

The image at https://ngc.nvidia.com/catalog/containers/nvidia:tensorflow uses python 3.5. Is a python 3.6 or 3.7 image available so I don't have to change all f-strings to Python 3.5 format?
elexhobby
  • 2,588
  • 5
  • 24
  • 33
0
votes
0 answers

Port forwarding from docker container to my local desktop (container --> remote host --> local desktop)

I have a jupyter notebook running in docker container. I would like to port forward it to my local desktop browser. For that I do the below steps 1) Publish the container port to the remote host port 2) Port forward the remote host port to the…
0
votes
0 answers

"Unknown flag" error while trying access remote server browser in a local environment

I am trying to run the below docker command. This command is supposed to produce an output as shown below in screenshot but it throws an error as "Unknown flag - ip". Once this error is resolved, I would also like to port forward it to view the…
The Great
  • 7,215
  • 7
  • 40
  • 128
0
votes
4 answers

Is there a way for GPU support without nvidia-docker

I am trying to get gpu support on my container without the nvidia-docker I know with the nvidia docker, I just have to use --runtime=nvidia but my current circumstances does not allow using nvidia-docker I tried installing the nvidia driver, cuda,…
LeeSJ
  • 9
  • 1
  • 2
0
votes
0 answers

How to mount the file into Jenkins docker

I'm trying to mount my file(/home/ubuntu/grace/new_project on ubuntu) into Jenkins Docker container and run 'nvidia-docker'. The directory that I want to copy it is in /var/jenkins_home/new_folder on Docker container. This is the command to run…
0
votes
1 answer

Model training using Azure Container Instance with GPU much slower than local test with same container

I am trying to train a Yolo computer vision model using a container I built which includes an installation of Darknet. The container is using the Nvidia supplied base image: nvcr.io/nvidia/cuda:9.0-devel-ubuntu16.04 Using Nvidia-Docker on my local…
0
votes
1 answer

Getting "buffer overflow detected" when trying to run NVIDIA FleX

I have been using Singularity 2.6 for a while and recently upgraded my Singularity to 3.0 (I cannot upgrade to 3.0.3 for technical reasons). Using Singularity 3.0 I build my new container with the same exact definition file that I used to build my…
Amir
  • 10,600
  • 9
  • 48
  • 75
0
votes
1 answer

How to ensure the container runtime is nvidia-docker for the kubernetes node?

I need to check if the kubernetes node is configured correctly. Need to use nvidia-docker for one of the worker nodes. Using: https://github.com/NVIDIA/k8s-device-plugin How can I confirm that the configuration is correct for the device plugin? $…
enator
  • 2,431
  • 2
  • 28
  • 46
0
votes
0 answers

GPU stats at container level

I am using https://hub.docker.com/r/jarkt/docker-remote-api/ to get Docker stats remotely using CURL as follows: curl http://:/containers//stats . Looking for a similar one for getting GPU stats for a specific docker…
Abhishek
  • 1,999
  • 5
  • 26
  • 52
0
votes
0 answers

Deploying Windows application in Nvidia Docker

I am planning to containerize legacy gpu intensive windows application using Nvidia Docker and kubernetis. But nvidia docker doesn't support windows as of now. please suggest some ideas. can I use RancherVM or kubevirt?
Tech User
  • 137
  • 1
  • 3
  • 16