getting-started
getting-started copied to clipboard
Does changing the default runtime to nvidia in daemon.json affect dockers that don't need to run with a gpu?
In daemon.json change default-runtime to nvidia and add the following. { "default-runtime": "nvidia", "runtimes": { "nvidia": { "path": "/usr/bin/nvidia-container-runtime", "runtimeArgs": [] } }, } This will include gpu information in the docker that is started by default. Does this approach affect docker containers that don't need to run with gpu?