Skip to content

Commit e272ca6

Browse files
authored
Merge pull request #62 from sparklyballs/TZ-README
add TZ info to README and highlight not recommend on manual port sett…
2 parents e82d837 + 0043726 commit e272ca6

1 file changed

Lines changed: 15 additions & 12 deletions

File tree

README.md

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,16 @@ The [LinuxServer.io][linuxserverurl] team brings you another container release f
2424

2525
```
2626
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
3637
```
3738

3839
**Parameters**
@@ -44,10 +45,11 @@ docker create \
4445
* `-e VERSION=latest` - Set whether to update plex or not - see Setting up application section.
4546
* `-e PGID=` for for GroupID - see below for explanation
4647
* `-e PUID=` for for UserID - see below for explanation
48+
* `-e TZ` - for timezone information *eg Europe/London, etc*
4749

4850
It is based on ubuntu xenial with s6 overlay, for shell access whilst the container is running do `docker exec -it plex /bin/bash`.
4951

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:
5153

5254
```
5355
-p 32400:32400 \
@@ -69,7 +71,7 @@ In this instance `PUID=1001` and `PGID=1001`. To find yours use `id user` as bel
6971
uid=1001(dockeruser) gid=1001(dockergroup) groups=1001(dockergroup)
7072
```
7173

72-
## Setting up the application
74+
## Setting up the application
7375
Webui can be found at `<your-ip>:32400/web`
7476

7577
** 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:-
8082

8183
`IMPORTANT NOTE:- YOU CANNOT UPDATE TO A PLEXPASS ONLY VERSION IF YOU DO NOT HAVE PLEXPASS`
8284

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.
8486
+ **`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.
8587
+ **`<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.
8688

@@ -92,6 +94,7 @@ Valid settings for VERSION are:-
9294

9395
## Versions
9496

97+
+ **01.10.16:** Add TZ info to README.
9598
+ **09.09.16:** Add layer badges to README.
9699
+ **27.08.16:** Add badges to README.
97100
+ **22.08.16:** Rebased to xenial and s6 overlay

0 commit comments

Comments
 (0)