-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathplex.json
More file actions
65 lines (65 loc) · 3.58 KB
/
plex.json
File metadata and controls
65 lines (65 loc) · 3.58 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"Plex": {
"description": "Organize and stream your personal media collection of movies, TV, music, and photos anywhere on all your devices. <a href='http://rockstor.com/docs/docker-based-rock-ons/plex-media-server.html' target='_blank'>Rock-on guide</a>.<p>This rock-on supports hardware transcoding (optional) via Intel QuickSync -- see <a href='https://ark.intel.com/content/www/us/en/ark/search/featurefilter.html?productType=873&0_QuickSyncVideo=True' target='_blank'>Intel ark</a> to check your processor's compatibility.</p><p><b>Note:</b> uses `net=host` to enable local detection.</p><p>Based on a <a href='https://hub.docker.com/r/linuxserver/plex' target='_blank'>custom OCI image</a>, available for amd64 and arm64 architecture.</p>",
"version": "1.1",
"website": "https://www.plex.tv",
"more_info": "<h4>Adding more media to Plex</h4><p>First, add the share(s) containing your additional media to this rock-on using its settings wizard. Then, from Plex webUI, you can add this/these share(s) and re-index your library. See <a href='http://rockstor.com/docs/docker-based-rock-ons/plex-media-server.html#adding-shares-to-plex' target='_blank'>Rockstor's documentation</a> for detailed instructions.</p> <h4>Hardware transcoding using Intel QuickSync</h4>If you have a compatible processor and filled the <em>QuickSync device</em> field during the rock-on installation, please note that you also need to add a dedicated share (named <em>plex-transcoding</em>, for instance) mapped as <code>/transcode</code> that will be used for transcoding only. Then, from Plex WebUI, you can update the <strong>transcode</strong> directory setting.</p>",
"ui": {
"slug": "web"
},
"volume_add_support": true,
"containers": {
"plex-linuxserver.io": {
"image": "linuxserver/plex",
"launch_order": 1,
"ports": {
"32400": {
"description": "Web-UI port.",
"label": "Web-UI port [e.g. 32400]",
"host_default": 32400,
"ui": true
}
},
"volumes": {
"/config": {
"description": "Plex configuration. It is important that the owner/group specified later have full access to the share (R/W/E)",
"label": "Config Storage [e.g. plex-config]"
},
"/data": {
"description": "Plex content (your media). You can also assign other media Shares on the system after installation. This share needs to have at least Read/Execute access for the user and group specified later",
"label": "Data Storage [e.g. plex-data]"
}
},
"opts": [
[
"--net=host",
""
]
],
"environment": {
"PGID": {
"description": "Enter a valid GID to use along with the above UID. It (or the above UID) must have full permissions to all Shares mapped in the previous step.",
"label": "GID",
"index": 3
},
"PUID": {
"description": "Enter a valid UID to run Plex with. It must have full permissions to all Shares mapped in the previous step.",
"label": "UID",
"index": 2
},
"VERSION": {
"description": "Enter version of Plex.",
"label": "VERSION [e.g. latest]",
"index": 1
}
},
"devices": {
"/dev/dri": {
"description": "Optional device path for enabling Intel QuickSync. Leave blank if not needed.",
"label": "QuickSync device [e.g. /dev/dri]"
}
}
}
}
}
}