cockpit-podman
cockpit-podman copied to clipboard
Add support for --device arguments
Would be nice to be able to specify device arguments through the UI.
+1
Found this issue when trying to enable the hardware acceleration of Jellyfin. 🥲
@deemoe404 What did you do? Did you create a compose file instead ? Or just ditched HW accel for now ?
@deemoe404 What did you do? Did you create a compose file instead ? Or just ditched HW accel for now ?
I ended up using this command to create the container. After creating it from the terminal, it can be monitored in the cockpit. You can refer to the documents here: https://jellyfin.org/docs/general/administration/hardware-acceleration/intel#configure-with-linux-virtualization.
podman run -d \
--name=Jellyfin \
--volume /mnt/CT1000/media/Jellyfin/config:/config \
--volume /mnt/CT1000/media/Jellyfin/cache:/cache \
--volume /mnt/CT1000/media/info:/media \
--volume /mnt/CT1000/qBittorrent/downloads:/mnt/CT1000/qBittorrent/downloads \
--group-add=$(getent group render | cut -d: -f3) \
-p 8096:8096 \
--restart=always \
--device /dev/dri/renderD128:/dev/dri/renderD128 \
jellyfin/jellyfin