forked from rockstor/rockon-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
transmission.json
49 lines (49 loc) · 1.71 KB
/
transmission.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
{
"Transmission": {
"description": "Open Source BitTorrent client",
"ui": {
"slug": ""
},
"version": "1.0",
"website": "http://www.transmissionbt.com/",
"containers": {
"transmission": {
"image": "dperson/transmission",
"launch_order": 1,
"ports": {
"51413": {
"description": "Port used to share the file being downloaded. You may need to open it (protocol: tcp and udp) on your firewall. Suggested default: 51413.",
"host_default": 51413,
"label": "Sharing port"
},
"9091": {
"description": "Transmission WebUI port. Suggested default: 9091",
"host_default": 9091,
"label": "WebUI port",
"protocol": "tcp",
"ui": true
}
},
"volumes": {
"/var/lib/transmission-daemon": {
"description": "Choose a Share where Transmission will save all of it's config and data files including your downloads. Eg: create a Share called transmission-data.",
"label": "Data Storage"
}
},
"environment": {
"TRUSER": {
"description": "Choose a login username for Transmission WebUI.",
"label": "WebUI username",
"index": 1
},
"TRPASSWD": {
"description": "Choose a login password for the Transmission WebUI.",
"label": "WebUI password",
"default": "admin",
"index": 2
}
}
}
}
}
}