This commit is contained in:
James Turland 2024-02-05 22:26:09 +00:00
parent fb2ef60757
commit 7155d26264

View file

@ -4,7 +4,7 @@ services:
image: jellyfin/jellyfin image: jellyfin/jellyfin
container_name: jellyfin container_name: jellyfin
group_add: group_add:
- '107' # This needs to be the group id of running `stat -c '%g' /dev/dri/renderD128` on the docker host - '107' # This needs to be the group id of your GPU, e.g., `stat -c '%g' /dev/dri/renderD128` on the docker host for iGPU
environment: environment:
- TZ=Europe/London - TZ=Europe/London
volumes: volumes:
@ -21,5 +21,5 @@ services:
- 7359:7359/udp #optional - 7359:7359/udp #optional
- 1900:1900/udp #optional - 1900:1900/udp #optional
devices: # uncomment these and amend if you require GPU accelerated transcoding devices: # uncomment these and amend if you require GPU accelerated transcoding
- /dev/dri/renderD129:/dev/dri/renderD129 - /dev/dri/renderD128:/dev/dri/renderD128
restart: unless-stopped restart: unless-stopped