You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docker-plex/README.md

53 lines
2.9 KiB

![http://linuxserver.io](http://www.linuxserver.io/wp-content/uploads/2015/06/linuxserver_medium.png)
The [LinuxServer.io](http://linuxserver.io) team brings you another quality container release featuring auto-update on startup, easy user mapping and community support. Be sure to checkout our [forums](http://forum.linuxserver.io) or for real-time support our [IRC](http://www.linuxserver.io/index.php/irc/) on freenode at `#linuxserver.io`.
10 years ago
# linuxserver/plex
[Plex](https://plex.tv/) organizes video, music and photos from personal media libraries and streams them to smart TVs, streaming boxes and mobile devices. This container is packaged as a standalone Plex Media Server.
![](https://press.plex.tv/wp-content/themes/plex-press/img/assets/plex-pms-icon.png)
## Usage
```
10 years ago
docker create \
--name=plex \
--net=host \
-e VERSION="plexpass" \
-e PUID=<UID> -e PGID=<GID> \
-v </path/to/library>:/config \
-v <path/to/tvseries>:/data/tvshows \
-v </path/to/movies>:/data/movies \
linuxserver/plex
```
**Parameters**
* `--net=host` - Shares host networking with container, **required**.
* `-v /config` - Plex library location. *This can grow very large, 50gb+ is likely for a large collection.*
* `-v /data/xyz` - Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc.
* `-e VERSION` - Set this to a full version number if you want to use a spesific version e.g. `0.9.12.4.1192-9a47d21`, or set it to `plexpass` or `latest`
* `-e PGID` for for GroupID - see below for explanation
* `-e PUID` for for UserID - see below for explanation
### User / Group Identifiers
10 years ago
**TL;DR** - The `PGID` and `PUID` values set the user / group you'd like your container to 'run as' to the host OS. This can be a user you've created or even root (not recommended).
Part of what makes our containers work so well is by allowing you to specify your own `PUID` and `PGID`. This avoids nasty permissions errors with relation to data volumes (`-v` flags). When an application is installed on the host OS it is normally added to the common group called users, Docker apps due to the nature of the technology can't be added to this group. So we added this feature to let you easily choose when running your containers.
10 years ago
## Updates / Monitoring
10 years ago
* Upgrade to the latest version of Plex simply `docker restart plex`.
10 years ago
* Monitor the logs of the container in realtime `docker logs -f plex`.
10 years ago
## Changelog
9 years ago
9 years ago
+ **19.09.2015:** Plex updateed theyre download servers from http to https
+ **28.08.2015:** Removed plexpass from rutine, and now uses VERSION as a combination fix.
9 years ago
+ **18.07.2015:** Moved autoupdate to be hosted by linuxserver.io and implented bugfix thanks to ljm42.
+ **09.07.2015:** Now with ability to pick static versionnumber.
+ **08.07.2015:** Now with autoupdates. (Hosted by fanart.tv)
+ **03.07.2015:** Fixed a mistake that allowed plex to run as user plex rather than abc (99:100). Thanks to double16 for spotting this.