From 9949d6056b2dfd7949bdba9082e32c772e3ae1d9 Mon Sep 17 00:00:00 2001 From: aptalca Date: Wed, 4 Dec 2019 12:54:10 -0500 Subject: [PATCH] Remove /transcode volume mapping --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- Dockerfile.armhf | 2 +- README.md | 7 ++----- readme-vars.yml | 5 ++--- 5 files changed, 7 insertions(+), 11 deletions(-) diff --git a/Dockerfile b/Dockerfile index 202b0b9..a2abbd2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -58,4 +58,4 @@ COPY root/ / # ports and volumes EXPOSE 32400/tcp 3005/tcp 8324/tcp 32469/tcp 1900/udp 32410/udp 32412/udp 32413/udp 32414/udp -VOLUME /config /transcode +VOLUME /config diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 08ea5e3..c616315 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -55,4 +55,4 @@ COPY root/ / # ports and volumes EXPOSE 32400/tcp 3005/tcp 8324/tcp 32469/tcp 1900/udp 32410/udp 32412/udp 32413/udp 32414/udp -VOLUME /config /transcode +VOLUME /config diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 7e8ce7a..a67b05b 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -55,4 +55,4 @@ COPY root/ / # ports and volumes EXPOSE 32400/tcp 3005/tcp 8324/tcp 32469/tcp 1900/udp 32410/udp 32412/udp 32413/udp 32414/udp -VOLUME /config /transcode +VOLUME /config diff --git a/README.md b/README.md index 6672404..d4dd59d 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,6 @@ docker create \ -v :/config \ -v :/tv \ -v :/movies \ - -v :/transcode \ --restart unless-stopped \ linuxserver/plex ``` @@ -101,7 +100,6 @@ services: - :/config - :/tv - :/movies - - :/transcode restart: unless-stopped ``` @@ -120,7 +118,6 @@ Container images are configured using parameters passed at runtime (such as thos | `-v /config` | Plex library location. *This can grow very large, 50gb+ is likely for a large collection.* | | `-v /tv` | Media goes here. Add as many as needed e.g. `/movies`, `/tv`, etc. | | `-v /movies` | Media goes here. Add as many as needed e.g. `/movies`, `/tv`, etc. | -| `-v /transcode` | Path for transcoding folder, *optional*. | ## Environment variables from files (Docker secrets) @@ -151,8 +148,8 @@ The application accepts a series of environment variables to further customize i | Parameter | Function | | :---: | --- | -| `-v /transcode` | Path for transcoding folder| | `--device=/dev/dri:/dev/dri` | Add this option to your run command if you plan on using Quicksync hardware acceleration - see Application Setup section.| +| `--device=/dev/dvb:/dev/dvb` | Add this option to your run command if you plan on using dvb devices.| ## User / Group Identifiers @@ -265,7 +262,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions -* **04.12.19:** - Add variable for setting PLEX_CLAIM. +* **04.12.19:** - Add variable for setting PLEX_CLAIM. Remove `/transcode` volume mapping as it is now set via plex gui and defaults to a location under `/config`. * **06.08.19:** - Add variable for setting UMASK. * **10.07.19:** - Fix permissions for tuner (/dev/dvb) devices. * **20.05.19:** - Bugfix do not allow Root group for Intel QuickSync ownership rules. diff --git a/readme-vars.yml b/readme-vars.yml index 0b16320..4a1da14 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -22,7 +22,6 @@ param_volumes: - { vol_path: "/config", vol_host_path: "", desc: "Plex library location. *This can grow very large, 50gb+ is likely for a large collection.*" } - { vol_path: "/tv", vol_host_path: "", desc: "Media goes here. Add as many as needed e.g. `/movies`, `/tv`, etc." } - { vol_path: "/movies", vol_host_path: "", desc: "Media goes here. Add as many as needed e.g. `/movies`, `/tv`, etc." } - - { vol_path: "/transcode", vol_host_path: "", desc: "Path for transcoding folder, *optional*." } param_usage_include_ports: false param_usage_include_net: true param_net: "host" @@ -52,8 +51,8 @@ optional_parameters: | | Parameter | Function | | :---: | --- | - | `-v /transcode` | Path for transcoding folder| | `--device=/dev/dri:/dev/dri` | Add this option to your run command if you plan on using Quicksync hardware acceleration - see Application Setup section.| + | `--device=/dev/dvb:/dev/dvb` | Add this option to your run command if you plan on using dvb devices.| # application setup block app_setup_block_enabled: true @@ -87,7 +86,7 @@ app_setup_block: | # changelog changelogs: - - { date: "04.12.19:", desc: "Add variable for setting PLEX_CLAIM." } + - { date: "04.12.19:", desc: "Add variable for setting PLEX_CLAIM. Remove `/transcode` volume mapping as it is now set via plex gui and defaults to a location under `/config`." } - { date: "06.08.19:", desc: "Add variable for setting UMASK." } - { date: "10.07.19:", desc: "Fix permissions for tuner (/dev/dvb) devices." } - { date: "20.05.19:", desc: "Bugfix do not allow Root group for Intel QuickSync ownership rules." }