-
Notifications
You must be signed in to change notification settings - Fork 97
/
syncthing.json
62 lines (62 loc) · 2.68 KB
/
syncthing.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
{
"Syncthing": {
"containers": {
"syncthing": {
"image": "linuxserver/syncthing",
"launch_order": 1,
"ports": {
"21027": {
"description": "Port for discovery broadcasts. You may need to open it(protocol: udp) on your firewall. Suggested default: 21027.",
"host_default": 21027,
"label": "Discovery port",
"protocol": "udp"
},
"22000": {
"description": "Port for incoming data. You may need to open it(protocol: tcp) on your firewall. Suggested default: 22000.",
"host_default": 22000,
"label": "Listening port",
"protocol": "tcp"
},
"8384": {
"description": "Syncthing WebUI port. Suggested default: 8384.",
"host_default": 8384,
"label": "WebUI port",
"protocol": "tcp",
"ui": true
}
},
"volumes": {
"/config": {
"description": "Choose a Share for configuration. Eg: create a Share called syncthing-config for this purpose alone.",
"label": "Config Storage",
"min_size": 1073741824
},
"/home/syncthing/Sync": {
"description": "Choose a Share for all incoming data. Eg: create a Share called syncthing-data for this purpose alone.",
"label": "Data Storage"
}
},
"environment": {
"PUID": {
"description": "Enter a valid UID to run Syncthing with. It must have full permissions to all Shares mapped in the previous step.",
"label": "UID",
"index": 1
},
"PGID": {
"description": "Enter a valid GID to use along with the same UID. It(or the above UID) must have full permissions to all Shares mapped in the previous step.",
"label": "GID",
"index": 2
}
}
}
},
"description": "Private & Secure continuous File Synchronization. <p>Based on a custom docker image: <a href='https://hub.docker.com/r/linuxserver/syncthing' target='_blank'>https://hub.docker.com/r/linuxserver/syncthing</a>, available for amd64 and arm64 architecture.</p>",
"ui": {
"https": true,
"slug": ""
},
"volume_add_support": true,
"website": "https://syncthing.net/",
"version": "1.1"
}
}