-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathsyncthing.json
More file actions
68 lines (68 loc) · 2.5 KB
/
syncthing.json
File metadata and controls
68 lines (68 loc) · 2.5 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"Syncthing": {
"description": "Open Source continuous file synchronization; private, secure and easy to use. <a href='https://rockstor.com/docs/interface/docker-based-rock-ons/syncthing.html' target='_blank'>Rock-on guide</a><p><b>Note:</b> uses `net=host` to enable local client discovery.</p><p>Based on a <a href='https://hub.docker.com/r/linuxserver/syncthing' target='_blank'>custom OCI image</a>, available for amd64 and arm64 architecture.</p>",
"version": "1.2",
"website": "https://syncthing.net/",
"ui": {
"https": true,
"slug": ""
},
"volume_add_support": true,
"containers": {
"syncthing": {
"image": "linuxserver/syncthing",
"launch_order": 1,
"ports": {
"21027": {
"description": "Port for discovery broadcasts. You may need to open (protocol: udp) on your firewall.",
"label": "Discovery port [e.g. 21027]",
"host_default": 21027,
"protocol": "udp"
},
"22000": {
"description": "Port for incoming data. You may need to open (protocol: tcp) on your firewall.",
"label": "Listening port [e.g. 22000]",
"host_default": 22000,
"protocol": "tcp"
},
"8384": {
"description": "Syncthing WebUI port.",
"label": "WebUI port [e.g. 8384]",
"host_default": 8384,
"protocol": "tcp",
"ui": true
}
},
"volumes": {
"/config": {
"description": "Configuration. Minimum Size: 1 Gigabyte.",
"label": "Config Storage [e.g. syncthing-config]",
"min_size": 1073741824
},
"/config/Sync": {
"description": "Synced data. After installing, additional Shares can be added.",
"label": "Data Storage [e.g. syncthing-data]"
}
},
"opts": [
[
"--net",
"host"
]
],
"environment": {
"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
},
"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
}
}
}
}
}
}