2024-09-25, 03:13 PM
I got it! Thanks
i had to run sudo apt install --install-recommends linux-generic-hwe-22.04
i had to run sudo apt install --install-recommends linux-generic-hwe-22.04
(2024-09-25, 01:17 PM)TheDreadPirate Wrote: What OS are you running on? We have documentation for docker compose setup of Intel GPUs.
https://jellyfin.org/docs/general/admini...ial-docker
Pretty simple. Just add this to your compose.
Code:devices:
- /dev/dri/renderD128:/dev/dri/renderD128
group_add:
- "993" # Change this to match your "render" host group id and remove this comment
The group_add requires that you run a couple commands (documented in the link) to find the proper ID number on your system for the render group. Here is my full docker compose as an example.
Code:services:
jellyfin-testing:
image: jellyfin/jellyfin:10.9.11
container_name: jellyfin-testing
user: 110:110
group_add:
- "993" # Intel render group
networks:
[censored bridge name]:
ipv4_address: 172.16.100.2
expose:
- 8096
volumes:
- ./jellyfin-stable-data/config:/config
- ./jellyfin-stable-data/cache:/cache
- /media/library:/media/library:ro
- /media/storage2:/media/storage2
- /media/ramdisk:/media/ramdisk
devices:
- /dev/dri/renderD128:/dev/dri/renderD128
environment:
- TZ=America/New_York
restart: 'unless-stopped'