forked from rockstor/rockon-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
embyserver.json
56 lines (55 loc) · 2.28 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
{
"EmbyServer": {
"containers": {
"embyserver": {
"image": "emby/embyserver",
"launch_order": 1,
"opts": [
[
"--net=host",
""
]
],
"ports": {
"8096": {
"description": "Emby Server WebUI port. Suggested default: 8096",
"host_default": 8096,
"label": "WebUI port",
"protocol": "tcp",
"ui": true
}
},
"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": {
"APP_UID": {
"description": "Enter a valid UID of an existing user with permission to media shares to run Emby as.",
"label": "UID to run Emby Server as.",
"index": 1
},
"APP_GID": {
"description": "Enter a valid GID of an exisiting user with permission to media shares to run Emby as.",
"label": "GID to run Emby Server as.",
"index": 2
}
}
}
},
"description": "Emby media server",
"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>",
"ui": {
"slug": ""
},
"volume_add_support": true,
"website": "https://emby.media/",
"version": "1.0"
}
}