Skip to content

Instantly share code, notes, and snippets.

@chattes
Forked from mikeymop/docker-compose.yml
Created September 9, 2024 01:47
Show Gist options
  • Save chattes/7bb34a327976cbbd910b1ab6eaeb2475 to your computer and use it in GitHub Desktop.
Save chattes/7bb34a327976cbbd910b1ab6eaeb2475 to your computer and use it in GitHub Desktop.
Plex Docker-Compose
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