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
+15-12Lines changed: 15 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,15 +24,16 @@ The [LinuxServer.io][linuxserverurl] team brings you another container release f
24
24
25
25
```
26
26
docker create \
27
-
--name=plex \
28
-
--net=host \
29
-
-e VERSION=latest \
30
-
-e PUID=<UID> -e PGID=<GID> \
31
-
-v </path/to/library>:/config \
32
-
-v <path/to/tvseries>:/data/tvshows \
33
-
-v </path/to/movies>:/data/movies \
34
-
-v </path for transcoding>:/transcode \
35
-
linuxserver/plex
27
+
--name=plex \
28
+
--net=host \
29
+
-e VERSION=latest \
30
+
-e PUID=<UID> -e PGID=<GID> \
31
+
-e TZ=<timezone> \
32
+
-v </path/to/library>:/config \
33
+
-v <path/to/tvseries>:/data/tvshows \
34
+
-v </path/to/movies>:/data/movies \
35
+
-v </path for transcoding>:/transcode \
36
+
linuxserver/plex
36
37
```
37
38
38
39
**Parameters**
@@ -44,10 +45,11 @@ docker create \
44
45
*`-e VERSION=latest` - Set whether to update plex or not - see Setting up application section.
45
46
*`-e PGID=` for for GroupID - see below for explanation
46
47
*`-e PUID=` for for UserID - see below for explanation
48
+
*`-e TZ` - for timezone information *eg Europe/London, etc*
47
49
48
50
It is based on ubuntu xenial with s6 overlay, for shell access whilst the container is running do `docker exec -it plex /bin/bash`.
49
51
50
-
*Special note* - If you'd like to run Plex without requiring `--net=host` (not recommended) then you will need the following ports in your `docker create` command:
52
+
*Special note* - If you'd like to run Plex without requiring `--net=host` (`NOT recommended`) then you will need the following ports in your `docker create` command:
51
53
52
54
```
53
55
-p 32400:32400 \
@@ -69,7 +71,7 @@ In this instance `PUID=1001` and `PGID=1001`. To find yours use `id user` as bel
** Note about updates, if there is no value set for the VERSION variable, then no updates will take place.**
@@ -80,7 +82,7 @@ Valid settings for VERSION are:-
80
82
81
83
`IMPORTANT NOTE:- YOU CANNOT UPDATE TO A PLEXPASS ONLY VERSION IF YOU DO NOT HAVE PLEXPASS`
82
84
83
-
+**`latest`**: will update plex to the latest version available that you are entitled to.
85
+
+**`latest`**: will update plex to the latest version available that you are entitled to.
84
86
+**`public`**: will update plexpass users to the latest public version, useful for plexpass users that don't want to be on the bleeding edge but still want the latest public updates.
85
87
+**`<specific-version>`**: will select a specific version (eg 0.9.12.4.1192-9a47d21) of plex to install, note you cannot use this to access plexpass versions if you do not have plexpass.
86
88
@@ -92,6 +94,7 @@ Valid settings for VERSION are:-
0 commit comments