From 0043726a450606d87593e5c505862c20a2043c3d Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Sat, 1 Oct 2016 09:48:13 +0100 Subject: [PATCH] add TZ info to README and highlight not recommend on manual port settings --- README.md | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index ffe4db7..d08dc6a 100644 --- a/README.md +++ b/README.md @@ -24,15 +24,16 @@ The [LinuxServer.io][linuxserverurl] team brings you another container release f ``` docker create \ - --name=plex \ - --net=host \ - -e VERSION=latest \ - -e PUID= -e PGID= \ - -v :/config \ - -v :/data/tvshows \ - -v :/data/movies \ - -v :/transcode \ - linuxserver/plex +--name=plex \ +--net=host \ +-e VERSION=latest \ +-e PUID= -e PGID= \ +-e TZ= \ +-v :/config \ +-v :/data/tvshows \ +-v :/data/movies \ +-v :/transcode \ +linuxserver/plex ``` **Parameters** @@ -44,10 +45,11 @@ docker create \ * `-e VERSION=latest` - Set whether to update plex or not - see Setting up application section. * `-e PGID=` for for GroupID - see below for explanation * `-e PUID=` for for UserID - see below for explanation +* `-e TZ` - for timezone information *eg Europe/London, etc* It is based on ubuntu xenial with s6 overlay, for shell access whilst the container is running do `docker exec -it plex /bin/bash`. -*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: +*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: ``` -p 32400:32400 \ @@ -69,7 +71,7 @@ In this instance `PUID=1001` and `PGID=1001`. To find yours use `id user` as bel uid=1001(dockeruser) gid=1001(dockergroup) groups=1001(dockergroup) ``` -## Setting up the application +## Setting up the application Webui can be found at `:32400/web` ** 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:- `IMPORTANT NOTE:- YOU CANNOT UPDATE TO A PLEXPASS ONLY VERSION IF YOU DO NOT HAVE PLEXPASS` -+ **`latest`**: will update plex to the latest version available that you are entitled to. ++ **`latest`**: will update plex to the latest version available that you are entitled to. + **`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. + **``**: 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. @@ -92,6 +94,7 @@ Valid settings for VERSION are:- ## Versions ++ **01.10.16:** Add TZ info to README. + **09.09.16:** Add layer badges to README. + **27.08.16:** Add badges to README. + **22.08.16:** Rebased to xenial and s6 overlay