From 422c8a13434f9d7f556207a05bce82d94ff7a881 Mon Sep 17 00:00:00 2001 From: CN-JS-HuiBai Date: Fri, 22 Dec 2023 20:26:24 +0800 Subject: [PATCH] upload jellyfin docker shell --- run-jellyfin-mpp.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 run-jellyfin-mpp.sh diff --git a/run-jellyfin-mpp.sh b/run-jellyfin-mpp.sh new file mode 100644 index 0000000..ff346be --- /dev/null +++ b/run-jellyfin-mpp.sh @@ -0,0 +1,14 @@ +#The Shell comes from https://github.com/jjm2473/ffmpeg-rk and fix podman problems +mkdir -p /jellyfin/config +docker run --name jellyfin \ + --security-opt systempaths=unconfined --security-opt apparmor=unconfined \ + --restart=unless-stopped -td \ + --device /dev/mpp_service \ + --device /dev/rga \ + --device /dev/dri \ + --pid=host \ + --dns=172.17.0.1 \ + -p 8096:8096 \ + -v /jellyfin/config:/config \ + -v /mnt:/mnt \ + jjm2473/jellyfin-mpp:latest \ No newline at end of file