forked from cturra/docker-plexmediaserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvars
40 lines (32 loc) · 1.04 KB
/
vars
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#
# this file contains a number of global variables used
# by the docker container and its scripts. update any
# of these to be appropriate for your environment.
#
IMAGE_NAME="cturra/plex"
CONTAINER_NAME="plex"
# plex media server architecture you want to run.
# PLEX_SERVER_ARCH=amd64
PLEX_SERVER_ARCH=amd64
# plex media server build or release channel you want to install
# you can define a specific build OR
# public to fetch the latest for public release OR
# plexpass to fetch the latest plexpass release
#
# example:
# PLEX_SERVER_VERSION=0.9.15.2.1663-7efd046
# PLEX_SERVER_VERSION=public
# PLEX_SERVER_VERSION=plexpass
PLEX_SERVER_VERSION=public
# plexpass will require a valid plexpass account
#PLEXPASS_USER="username"
#PLEXPASS_PASS="password"
# directories on the local host content will be mounted.
LOCAL_MEDIA_DIR="/media"
LOCAL_DATA_DIR="/data/plex"
# force plex uid/gid for NFS
#PLEX_UID=10003
#PLEX_GID=10000
# any additional docker run options you may want.
# example: --cpuset-cpus="0-6"
DOCKER_OPTS="--cpuset-cpus="0-6" --memory=16G"