Created
June 1, 2018 21:13
-
-
Save PHLAK/6cdf38eae7f250e62362cee4c2d82d2c to your computer and use it in GitHub Desktop.
Plex Docker compose file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
plex-media-server: | |
container_name: plex-media-server | |
image: plexinc/pms-docker | |
environment: | |
PLEX_CLAIM: [YOUR_TOKEN_HERE] | |
TZ: America/Phoenix | |
network_mode: host | |
volumes: | |
- plex-config:/config | |
- plex-transcode:/transcode | |
- /path/to/your/media:/data | |
restart: unless-stopped | |
volumes: | |
plex-config: {} | |
plex-transcode: {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment