2024-11-18, 10:37 PM
So I ran... getent group render | cut -d: -f3
And added the group to the docker compose...
services:
jellyfin:
image: linuxserver/jellyfin:latest
container_name: jellyfin
environment:
- PUID=1000
- PGID=1000
- TZ=America/New_York
- JELLYFIN_PublishedServerUrl=192.168.xxx.xxx
group_add:
- "104"
volumes:
- /home/xxx/containers/jellyfinconfig
- /mnt/data
devices:
- /dev/dri/renderD128dev/dri/renderD128
- /dev/dri/card0dev/dri/card0
ports:
- 8096:8096
restart: unless-stopped
Still doesn't recognize the device. Did I do it wrong?
And added the group to the docker compose...
services:
jellyfin:
image: linuxserver/jellyfin:latest
container_name: jellyfin
environment:
- PUID=1000
- PGID=1000
- TZ=America/New_York
- JELLYFIN_PublishedServerUrl=192.168.xxx.xxx
group_add:
- "104"
volumes:
- /home/xxx/containers/jellyfinconfig
- /mnt/data
devices:
- /dev/dri/renderD128dev/dri/renderD128
- /dev/dri/card0dev/dri/card0
ports:
- 8096:8096
restart: unless-stopped
Still doesn't recognize the device. Did I do it wrong?