(2024-04-29, 11:10 AM)TheDreadPirate Wrote: Can you describe your setup? Hardware specs and software configuration? Direct install or Docker?
HP ProDesk 600 G4 SFF Desktop (Intel i5-8500 6-Core, 16GB RAM, 1TB PCIe SSD, Intel UHD 630)
OS: PROXMOX (Unprivileged Container) Running Ubuntu Jammy 22.04
Since it is an unprivileged container, for security purposes, I had to do a workaround so that the container could access the iGPU, it seems to work fine on the admin account.
https://bookstack.swigg.net/books/linux/...gpu-access
Jellyfin Server: 10.8.13 installed via Docker
Docker Compose:
jellyfin:
image: jellyfin/jellyfin:latest
container_name: jellyfin
user: 1000:1000
volumes:
- /usr/share/jellyfin/web:/config
- /var/cache/jellyfin:/cache
#- /opt/jellyfin/config.json:/jellyfin/jellyfin-web/config.json
- type: bind
source: /mnt
target: /mnt
restart: unless-stopped
networks:
- caddy
environment:
- PGID=1000
- PUID=1000
- TZ=America/Chicago
- transcode_cache_size=25GB
devices:
- /dev/dri/renderD128:/dev/dri/renderD128
- /dev/dri/card0:/dev/dri/card0
ports:
- 8096:8096
expose:
- 8096
# - JELLYFIN_PublishedServerUrl=http://example.com
extra_hosts:
- host.docker.internal:host-gateway