-
-
Save chattes/7bb34a327976cbbd910b1ab6eaeb2475 to your computer and use it in GitHub Desktop.
Plex Docker-Compose
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: "3.7" | |
services: | |
plex: | |
image: plexinc/pms-docker | |
container_name: plex | |
restart: unless-stopped | |
environment: | |
- TZ=America/New_York | |
devices: | |
- "/dev/dri:/dev/dri" # Binds the Intel Quicksync decoder to Plex HW Transcode | |
network_mode: host | |
volumes: | |
- /path/on/host/to/save/to:/config | |
- /path/on/host/to/save/transcodes/to:/transcode | |
- /path/on/host/to/save/data/to:/data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment