EDIT: Adding runtime: nvidia into the compose file appears to have fixed the issue. Previously, it wasn't required when using the deploy: notation. I'm not sure what changed, but adding the runtime back fixed the issue. I'm leaving this here in case it helps someone else out. After upgrading beyond 7.2.5-rc1, I am unable to start containers using my Nvidia GTX 970. The newer kernel versions do not appear to have a working - at least for the GTX 970 - 580 series driver. 580.125 is the last driver version that worked for me. Diagnostics are attached and additional information is below. Any help would be appreciated. Nvidia Info: Nvidia Driver Version: 580.142
Open Source Kernel Module: No
Installed GPU(s):
0:
NVIDIA GeForce GTX 970
0C:00.0
GPU-f2b9c44f-accf-5c81-4303-1f1c97c38b39 GPU Driver Support: 0: NVIDIA GeForce GTX 970
Detected via: nvidia-smi
Chip codename: GM204
Architecture: Maxwell
Kernel module support: proprietary-only
Device ID input: 0x13C210DE
Normalized ID: 13c2
Supported candidates: 580.142
Recommended Driver: 580.142 (best-available) nvidia-smi Output: Thu Apr 23 22:21:09 2026
+-----------------------------------------------------------------------------------------+
| NVIDIA-SMI 580.142 Driver Version: 580.142 CUDA Version: 13.0 |
+-----------------------------------------+------------------------+----------------------+
| GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. |
| | | MIG M. |
|=========================================+========================+======================|
| 0 NVIDIA GeForce GTX 970 On | 00000000:0C:00.0 Off | N/A |
| 47% 39C P8 13W / 250W | 2MiB / 4096MiB | 0% Default |
| | | N/A |
+-----------------------------------------+------------------------+----------------------+
+-----------------------------------------------------------------------------------------+
| Processes: |
| GPU GI CI PID Type Process name GPU Memory |
| ID ID Usage |
|=========================================================================================|
| No running processes found |
+-----------------------------------------------------------------------------------------+ Error when starting via docker compose: Error response from daemon: failed to create task for container: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: error during container init: error running prestart hook #0: exit status 1, stdout: , stderr: Auto-detected mode as 'legacy'
nvidia-container-cli: ldcache error: process /sbin/ldconfig failed with error code: 1 Example Docker Compose Service: services:
plex:
container_name: plex
image: ghcr.io/hotio/plex
restart: always
network_mode: host
tmpfs:
- /transcode
volumes:
- $DATADIR/plex:/config
- $MEDIADIR/media:/data
environment:
- TZ=$TZ
- UMASK=002
- PLEX_BETA_INSTALL=true
- PLEX_CLAIM_TOKEN=************
- PLEX_ADVERTISE_URL=**************
deploy:
resources:
reservations:
devices:
- driver: nvidia
capabilities:
- gpu
count: all
healthcheck:
test: curl --connect-timeout 15 --max-time 100 --silent --show-error --fail
"http://$IP_ADDRESS:32400/identity" >/dev/null
interval: 15s
timeout: 5s
retries: 5
start_period: 60s
labels:
net.unraid.docker.icon: https://raw.githubusercontent.com/walkxcode/dashboard-icons/master/png/plex.png
net.unraid.docker.webui: http://$IP_ADDRESS:32400/web dragon-diagnostics-20260423-2201.zip