add TZ info to README and highlight not recommend on manual port settings

pull/62/head
sparklyballs 8 years ago
parent e82d837e38
commit 0043726a45

@ -24,15 +24,16 @@ The [LinuxServer.io][linuxserverurl] team brings you another container release f
``` ```
docker create \ docker create \
--name=plex \ --name=plex \
--net=host \ --net=host \
-e VERSION=latest \ -e VERSION=latest \
-e PUID=<UID> -e PGID=<GID> \ -e PUID=<UID> -e PGID=<GID> \
-v </path/to/library>:/config \ -e TZ=<timezone> \
-v <path/to/tvseries>:/data/tvshows \ -v </path/to/library>:/config \
-v </path/to/movies>:/data/movies \ -v <path/to/tvseries>:/data/tvshows \
-v </path for transcoding>:/transcode \ -v </path/to/movies>:/data/movies \
linuxserver/plex -v </path for transcoding>:/transcode \
linuxserver/plex
``` ```
**Parameters** **Parameters**
@ -44,10 +45,11 @@ docker create \
* `-e VERSION=latest` - Set whether to update plex or not - see Setting up application section. * `-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 PGID=` for for GroupID - see below for explanation
* `-e PUID=` for for UserID - 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`. 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 \ -p 32400:32400 \
@ -92,6 +94,7 @@ Valid settings for VERSION are:-
## Versions ## Versions
+ **01.10.16:** Add TZ info to README.
+ **09.09.16:** Add layer badges to README. + **09.09.16:** Add layer badges to README.
+ **27.08.16:** Add badges to README. + **27.08.16:** Add badges to README.
+ **22.08.16:** Rebased to xenial and s6 overlay + **22.08.16:** Rebased to xenial and s6 overlay

Loading…
Cancel
Save