nvidia-docker
nvidia-docker copied to clipboard
Build and run Docker containers leveraging NVIDIA GPUs
I'm using `docker compose` to run a container: ``` version: "3.9" services: app: image: nvidia/cuda:11.0.3-base-ubuntu20.04 deploy: resources: reservations: devices: - capabilities: [ gpu ] ``` The container *can* benefit from...
_The template below is mostly useful for bug reports and support questions. Feel free to remove anything which doesn't apply to you and add more information where it makes sense._...
I use Gentoo Linux. Please provide an ebuild to merge it on Gentoo.
### 1. Issue or feature description The following Dockerfile does not build today (April 28, 2022), even though it built successfully yesterday: ``` FROM nvidia/cuda:11.4.0-runtime-ubuntu20.04 RUN apt-get update ``` The...
Hi there, I recently wanted to build containers that can run GUI applications. My `Dockerfile` and `docker-compose.yml` work well in **WSL2,** but I ran into problems when building the same...
It is very unclear that NGC containers only run on linux hosts of a particular kind. Please state this directly and clearly at the top of all your documentation. Pass...
_The template below is mostly useful for bug reports and support questions. Feel free to remove anything which doesn't apply to you and add more information where it makes sense._...
### 1. Issue or feature description `Failed to initialize NVML: Unknown Error` does not occurred in initial NVIDIA docker created, but it's happened after calling `systemctl daemon-reload`. It works fine...
### 1. Issue or feature description ``` sudo apt-get update E: Conflicting values set for option Signed-By regarding source https://nvidia.github.io/libnvidia-container/stable/ubuntu18.04/amd64/ /: /usr/share/keyrings/nvidia-container-toolkit-keyring.gpg != E: The list of sources could not...
NVIDIA Container Toolkit doesn't work in rootless mode by default, because cgroup is not supported in rootless mode, disabling its use fixed the issue as mentioned in https://github.com/NVIDIA/nvidia-docker/issues/1155#issuecomment-884499204 However, __limiting...