|
|
|
@ -19,7 +19,6 @@ docker create \
|
|
|
|
|
--net=host \
|
|
|
|
|
-e VERSION=plexpass \
|
|
|
|
|
-e PUID=<UID> -e PGID=<GID> \
|
|
|
|
|
-v </path/to/transcode>:/transcode \
|
|
|
|
|
-v </path/to/library>:/config \
|
|
|
|
|
-v <path/to/tvseries>:/data/tvshows \
|
|
|
|
|
-v </path/to/movies>:/data/movies \
|
|
|
|
@ -30,7 +29,6 @@ docker create \
|
|
|
|
|
|
|
|
|
|
* `--net=host` - Shares host networking with container, **required**.
|
|
|
|
|
* `-v /config` - Plex library location. *This can grow very large, 50gb+ is likely for a large collection.*
|
|
|
|
|
* `-v /transcode` *(optional)* - Transcode directory to offload heavy writes in a docker container.
|
|
|
|
|
* `-v /data/xyz` - Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc.
|
|
|
|
|
* `-e VERSION=` - *(optional)* - Permits specific version selection e.g. `0.9.12.4.1192-9a47d21`, also supports `plexpass` or `latest`
|
|
|
|
|
* `-e PGID=` for for GroupID - see below for explanation
|
|
|
|
|