-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathsonarr.json
More file actions
55 lines (55 loc) · 1.86 KB
/
sonarr.json
File metadata and controls
55 lines (55 loc) · 1.86 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
{
"Sonarr": {
"description": "Sonarr (formerly NZBdrone) is a PVR for usenet and bittorrent users.<p>Based on a <a href='https://hub.docker.com/r/linuxserver/sonarr' target='_blank'>custom OCI image</a>, available for amd64 and arm64 architecture.</p>",
"version": "1.1",
"website": "https://sonarr.tv/",
"volume_add_support": true,
"containers": {
"Sonarr": {
"image": "linuxserver/sonarr",
"launch_order": 1,
"ports": {
"8989": {
"description": "Sonarr WebUI port.",
"label": "WebUI port [e.g. 8989]",
"host_default": 8989,
"protocol": "tcp",
"ui": true
}
},
"volumes": {
"/config": {
"description": "Sonarr configuration.",
"label": "Config Storage [e.g. sonarr-config]"
},
"/downloads": {
"description": "Sonarr downloads.",
"label": "Download Storage [e.g. sonarr-downloads]"
},
"/tv": {
"description": "Sonarr media library. You can also assign other media Shares after installation.",
"label": "Media Library [e.g. sonarr-library]"
}
},
"opts": [
[
"-v",
"/dev/rtc:/dev/rtc:ro"
]
],
"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 to run Sonarr as.",
"index": 2
},
"PUID": {
"description": "Enter a valid UID to run Sonarr as. It must have full permissions to all Shares mapped in the previous step.",
"label": "UID to run Sonarr as.",
"index": 1
}
}
}
}
}
}