Created
April 24, 2019 16:56
-
-
Save onfire4g05/9eaff9291e148b61ca764d0badadce6e to your computer and use it in GitHub Desktop.
Plex Docker
This file contains hidden or 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: | |
container_name: plex | |
image: lsioarmhf/plex:latest | |
network_mode: "host" | |
environment: | |
PUID: 1001 | |
PGID: 1001 | |
# Volumes store your data between container upgrades | |
volumes: | |
- './config:/config' | |
- './media:/media' | |
- './transcode:/transcode' | |
- './plex-versions/movies:/media/Movies/Plex Versions' | |
- './plex-versions/tv:/media/TV/Plex Versions' | |
cap_add: | |
- NET_ADMIN | |
restart: unless-stopped |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment