-
Notifications
You must be signed in to change notification settings - Fork 97
/
transmission.json
60 lines (60 loc) · 2.41 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
50
51
52
53
54
55
56
57
58
59
60
{
"Transmission": {
"description": "Open Source BitTorrent client.<p>Based on a custom docker image: <a href='https://hub.docker.com/r/dperson/transmission' target='_blank'>https://hub.docker.com/r/dperson/transmission</a>, available for amd64 and arm64 architecture.</p>",
"volume_add_support": true,
"ui": {
"slug": ""
},
"version": "1.1",
"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
},
"USERID": {
"description": "Choose a UID to run transmission as.",
"label": "UID",
"index": 3
},
"GROUPID": {
"description": "Choose a GID to run transmission as.",
"label": "GID",
"index": 4
}
}
}
}
}
}