You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ The [LinuxServer.io](https://linuxserver.io) team brings you another container r
17
17
docker create \
18
18
--name=plex \
19
19
--net=host \
20
-
-e VERSION=plexpass \
20
+
-e VERSION=latest \
21
21
-e PUID=<UID> -e PGID=<GID> \
22
22
-v </path/to/library>:/config \
23
23
-v <path/to/tvseries>:/data/tvshows \
@@ -30,7 +30,7 @@ docker create \
30
30
*`--net=host` - Shares host networking with container, **required**.
31
31
*`-v /config` - Plex library location. *This can grow very large, 50gb+ is likely for a large collection.*
32
32
*`-v /data/xyz` - Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc.
33
-
*`-e VERSION=` - *(optional)* - Permits specific version selection e.g. `0.9.12.4.1192-9a47d21`, also supports `plexpass` or `latest`
33
+
*`-e VERSION=latest` - Permits specific version selection e.g. `0.9.12.4.1192-9a47d21`, also supports `latest`. If left blank, auto update is disabled until set.
34
34
*`-e PGID=` for for GroupID - see below for explanation
35
35
*`-e PUID=` for for UserID - see below for explanation
36
36
@@ -64,6 +64,7 @@ In this instance `PUID=1001` and `PGID=1001`. To find yours use `id user` as bel
64
64
65
65
## Changelog
66
66
67
+
+**07.04.2016:** removed `/transcode` volume support (upstream Plex change) and modified PlexPass download method to prevent unauthorised usage of paid PMS
67
68
+**24.09.2015:** added optional support for volume transcoding (/transcode), and various typo fixes.
68
69
+**17.09.2015:** Changed to run chmod only once
69
70
+**19.09.2015:** Plex updated their download servers from http to https
0 commit comments