diff --git a/lsio/jellyfin/docker-compose.yaml b/lsio/jellyfin/docker-compose.yaml index 51a5db1..0528fa9 100644 --- a/lsio/jellyfin/docker-compose.yaml +++ b/lsio/jellyfin/docker-compose.yaml @@ -29,8 +29,6 @@ services: - ${BASEDIR:-/volume1/docker}/jellyfin/data/tvshows:/data/tvshows # Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. - ${BASEDIR:-/volume1/docker}/jellyfin/data/movies:/data/movies - # Path for Raspberry Pi OpenMAX libs *optional*. - - /opt/vc/lib:/opt/vc/lib # optional ports: # Http webUI. - 8096:8096 @@ -40,17 +38,4 @@ services: - 7359:7359/udp # optional # Optional - Service discovery used by DNLA and clients. - 1900:1900/udp # optional - devices: - # Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi). - - /dev/dri:/dev/dri # optional - # Only needed if you want to use your Raspberry Pi MMAL video decoding (Enabled as OpenMax H264 decode in gui settings). - - /dev/vcsm:/dev/vcsm # optional - # Only needed if you want to use your Raspberry Pi OpenMax video encoding. - - /dev/vchiq:/dev/vchiq # optional - # Only needed if you want to use your Raspberry Pi V4L2 video encoding. - - /dev/video10:/dev/video10 # optional - # Only needed if you want to use your Raspberry Pi V4L2 video encoding. - - /dev/video11:/dev/video11 # optional - # Only needed if you want to use your Raspberry Pi V4L2 video encoding. - - /dev/video12:/dev/video12 # optional restart: unless-stopped diff --git a/lsio/jellyfin/docker-run.sh b/lsio/jellyfin/docker-run.sh index c68bd33..c937127 100644 --- a/lsio/jellyfin/docker-run.sh +++ b/lsio/jellyfin/docker-run.sh @@ -21,12 +21,5 @@ docker run -d \ -v ${BASEDIR:-/volume1/docker}/jellyfin/config:/config `# Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.*` \ -v ${BASEDIR:-/volume1/docker}/jellyfin/data/tvshows:/data/tvshows `# Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc.` \ -v ${BASEDIR:-/volume1/docker}/jellyfin/data/movies:/data/movies `# Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc.` \ - -v /opt/vc/lib:/opt/vc/lib `# optional` `# Path for Raspberry Pi OpenMAX libs *optional*.` \ - --device /dev/dri:/dev/dri `# optional` `# Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi).` \ - --device /dev/vcsm:/dev/vcsm `# optional` `# Only needed if you want to use your Raspberry Pi MMAL video decoding (Enabled as OpenMax H264 decode in gui settings).` \ - --device /dev/vchiq:/dev/vchiq `# optional` `# Only needed if you want to use your Raspberry Pi OpenMax video encoding.` \ - --device /dev/video10:/dev/video10 `# optional` `# Only needed if you want to use your Raspberry Pi V4L2 video encoding.` \ - --device /dev/video11:/dev/video11 `# optional` `# Only needed if you want to use your Raspberry Pi V4L2 video encoding.` \ - --device /dev/video12:/dev/video12 `# optional` `# Only needed if you want to use your Raspberry Pi V4L2 video encoding.` \ --restart unless-stopped \ ghcr.io/linuxserver/jellyfin