-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathembyserver.json
More file actions
69 lines (69 loc) · 2.47 KB
/
embyserver.json
File metadata and controls
69 lines (69 loc) · 2.47 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
66
67
68
69
{
"Emby server": {
"description": "Emby media server.<p><b>Note:</b> uses `net=host` to enable core functionality.</p><p>Based on the <a href='https://hub.docker.com/r/emby/embyserver' target='_blank'>official OCI image</a>, available for amd64 architecture only.</p>",
"version": "1.1",
"website": "https://emby.media/",
"more_info": "<h4>Adding media to Emby.</h4><p>You can add Shares(with media) to Emby from the settings wizard of this Rock-on. Then, from Emby WebUI, you can update and re-index your library.</p><p> Visit https://hub.docker.com/r/emby/embyserver for description of each option.",
"volume_add_support": true,
"containers": {
"embyserver": {
"image": "emby/embyserver",
"launch_order": 1,
"ports": {
"8096": {
"description": "Emby Server WebUI port.",
"label": "WebUI port [e.g. 8096]",
"host_default": 8096,
"protocol": "tcp",
"ui": true
},
"8920": {
"description": "Emby Server HTTPS port.",
"label": "HTTPS port [e.g. 8920]",
"host_default": 8920,
"protocol": "tcp"
}
},
"volumes": {
"/config": {
"description": "Share for the Emby Server configuration.",
"label": "Config Storage [e.g. emby-config]"
},
"/media": {
"description": "Share with media content. It will be available as /media inside Emby.",
"label": "Media Storage [e.g. emby-media]"
}
},
"opts": [
[
"--net=host",
""
]
],
"environment": {
"GID": {
"description": "GID of an existing user with permission to media shares to run Emby as.",
"label": "GID",
"index": 2
},
"GIDLIST": {
"description": "Enter a comma-separated list of additional GIDs to run emby as",
"label": "GIDList",
"index": 3
},
"UID": {
"description": "UID of an existing user with permission to media shares to run Emby as.",
"label": "UID",
"index": 1
}
},
"devices": {
"VAAPI": {
"description": "<u>Optional:</u> path to hardware transcoding device (/dev/dri/renderD128). Leave blank if not needed.",
"label": "VAAPI device"
}
}
}
}
}
}