-
Notifications
You must be signed in to change notification settings - Fork 97
/
embyserver.json
77 lines (76 loc) · 3.45 KB
/
embyserver.json
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
70
71
72
73
74
75
76
{
"Emby server": {
"containers": {
"embyserver": {
"image": "emby/embyserver",
"launch_order": 1,
"opts": [
[
"--net=host",
""
]
],
"devices": {
"VAAPI": {
"description": "<u>Optional:</u> path to hardware transcoding device (/dev/dri/renderD128). Leave blank if not needed.",
"label": "VAAPI device"
}
},
"ports": {
"8096": {
"description": "Emby Server WebUI port. Suggested default: 8096",
"host_default": 8096,
"label": "WebUI port",
"protocol": "tcp",
"ui": true
},
"8920": {
"description": "Emby Server HTTPS port. Suggested default: 8920",
"host_default": 8920,
"label": "HTTPS port",
"protocol": "tcp",
"ui": false
}
},
"volumes": {
"/config": {
"description": "Choose a Share for the Emby Server configuration. Eg: create a Share called emby-config for this purpose alone.",
"label": "Config Storage"
},
"/media": {
"description": "Choose a Share with media content. Eg: create a Share called emby-media for this purpose alone or use an existing share. It will be available as /media inside Emby.",
"label": "Media Storage"
}
},
"environment": {
"UID": {
"description": "Enter a valid UID of an existing user with permission to media shares to run Emby as.",
"label": "UID",
"index": 1,
"default":1000
},
"GID": {
"description": "Enter a valid GID of an existing user with permission to media shares to run Emby as.",
"label": "GID",
"index": 2,
"default":100
},
"GIDLIST": {
"description": "Enter a comma-separated list of additional GIDs to run emby as",
"label": "GIDList",
"index": 3,
"default":100
}
}
}
},
"description": "Emby media server. <p>Based on the official docker image: <a href='https://hub.docker.com/r/emby/embyserver' target='_blank'>https://hub.docker.com/r/emby/embyserver</a>, available for amd64 architecture only.</p>",
"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.",
"ui": {
"slug": ""
},
"volume_add_support": true,
"website": "https://emby.media/",
"version": "1.1"
}
}