Initial checkin

This commit is contained in:
Radar231 2021-08-01 18:05:06 -04:00
commit 27b4fca1b1
3 changed files with 36 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.env

6
README.md Normal file
View File

@ -0,0 +1,6 @@
# plex docker deployment
## Introduction
This docker-compose configuration will deploy a plex server.

29
docker-compose.yml Normal file
View File

@ -0,0 +1,29 @@
---
version: "2.1"
services:
plex:
image: linuxserver/plex
container_name: plex
network_mode: host
env_file:
- plex.env
environment:
- PUID=1000
- PGID=1000
- VERSION=docker
- TZ=America/Toronto
- UMASK=022 #optional
# value stored in plex.env file
#- PLEX_CLAIM=xxxxxxx
volumes:
- /containers/plex:/config
- /Media/TV:/tv:ro
- /Media/Movies:/movies:ro
- /Media/Music:/music:ro
- /Media/Other:/other:ro
- /Media/Pictures:/pictures:ro
restart: unless-stopped
# ports:
# - "32400:32400"
# EOF