minus-squareTRBoom@lemmy.ziptoSelfhosted@lemmy.world•[Ubuntu] [Docker] Need help with Nvidia hardware acceleration in JellyfinlinkfedilinkEnglisharrow-up2arrow-down1·22 hours agoHere’s mine, no judging for how I set the ip name: jellyfin services: jellyfin: container_name: jellyfin.live networks: mynet: ipv4_address: 192.168.5.3 ports: - 8096:8096 volumes: - jellyfin-config:/config - jellyfin-cache:/cache - type: bind source: /mnt target: /Media Disk 1 - type: bind source: /mnt target: /Media Disk 2 - type: bind source: /mnt target: /Media Disk 3 environment: - HEALTHCHECK_URL=192.168.5.3 restart: unless-stopped deploy: resources: reservations: devices: - driver: nvidia count: all capabilities: - gpu image: jellyfin/jellyfin:latest networks: mynet: external: true name: mynet volumes: jellyfin-config: external: true name: jellyfin-config jellyfin-cache: external: true name: jellyfin-cache The section on the GPU looks like yours. I had to do something to get it working, but it’s been forever. linkfedilink
Here’s mine, no judging for how I set the ip
name: jellyfin services: jellyfin: container_name: jellyfin.live networks: mynet: ipv4_address: 192.168.5.3 ports: - 8096:8096 volumes: - jellyfin-config:/config - jellyfin-cache:/cache - type: bind source: /mnt target: /Media Disk 1 - type: bind source: /mnt target: /Media Disk 2 - type: bind source: /mnt target: /Media Disk 3 environment: - HEALTHCHECK_URL=192.168.5.3 restart: unless-stopped deploy: resources: reservations: devices: - driver: nvidia count: all capabilities: - gpu image: jellyfin/jellyfin:latest networks: mynet: external: true name: mynet volumes: jellyfin-config: external: true name: jellyfin-config jellyfin-cache: external: true name: jellyfin-cacheThe section on the GPU looks like yours. I had to do something to get it working, but it’s been forever.