I am using Docker Compose. Here is my file:
services:
ersatztv:
image: jasongdove/ersatztv:latest-vaapi
restart: unless-stopped
volumes:
- './media:/media:ro'
- './config:/root/.local/share/ersatztv'
tmpfs:
- '/root/.local/share/etv-transcode'
ports:
- '8409:8409'
environment:
- TZ=America/New_York
container_name: ersatztv
For VAAPI hardware acceleration to work on Jellyfin I had to mount the GPU.
devices:
- /dev/dri:/dev/dri
Do I not have to do that here?