Remove /transcode volume mapping

pull/217/head
aptalca 5 years ago committed by Ryan Kuba
parent 25f33c7775
commit 9949d6056b

@ -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

@ -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

@ -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

@ -73,7 +73,6 @@ docker create \
-v </path/to/library>:/config \
-v <path/to/tvseries>:/tv \
-v </path/to/movies>:/movies \
-v </path for transcoding>:/transcode \
--restart unless-stopped \
linuxserver/plex
```
@ -101,7 +100,6 @@ services:
- </path/to/library>:/config
- <path/to/tvseries>:/tv
- </path/to/movies>:/movies
- </path for transcoding>:/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.

@ -22,7 +22,6 @@ param_volumes:
- { vol_path: "/config", vol_host_path: "</path/to/library>", desc: "Plex library location. *This can grow very large, 50gb+ is likely for a large collection.*" }
- { vol_path: "/tv", vol_host_path: "<path/to/tvseries>", desc: "Media goes here. Add as many as needed e.g. `/movies`, `/tv`, etc." }
- { vol_path: "/movies", vol_host_path: "</path/to/movies>", desc: "Media goes here. Add as many as needed e.g. `/movies`, `/tv`, etc." }
- { vol_path: "/transcode", vol_host_path: "</path for transcoding>", 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." }

Loading…
Cancel
Save