-
Notifications
You must be signed in to change notification settings - Fork 1
/
syncthing.skeleton
92 lines (92 loc) · 1.72 KB
/
syncthing.skeleton
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
name: `SyncThing`,
description: `Continuous and secure file synchronization between multiple computers anywhere`,
image: `linuxserver/syncthing`,
uuid: `010B271D-68A8-4E03-8612-1E94F1DD9FA3`,
tags: [ 'Sync', 'Shares' ],
actions: [
{
type: `Header`,
title: `Sync`
},
{
type: `Text`,
text: `Select which folders you want to synchronize. The specific synchronization is controlled in the app itself.`
},
{
type: `SelectShares`,
name: `/Sync/Folders`,
description: `Select folders`
},
{
type: `Text`,
text: `Select which applications you want to synchronize.`
},
{
type: `SelectBackups`,
name: `/Sync/Applications`,
description: `Select applications`
}
],
properties: [
{
type: `Environment`,
name: `PUID`,
value: `0`
},
{
type: `Environment`,
name: `HOME`,
value: `/`
},
{
type: `Directory`,
name: `/Sync`
},
{
type: `Directory`,
name: `/Sync/Folders`,
style: `temp`
},
{
type: `Directory`,
name: `/Sync/Applications`,
style: `temp`
},
{
type: `Directory`,
name: `/config`,
style: `boot`
},
{
type: `Port`,
name: `8384/tcp`,
port: 8384,
protocol: `TCP`,
web: {
tab: `newtab`,
path: `/`
},
mdns: {
type: `_http._tcp`
}
},
{
type: `Port`,
name: `22000/tcp`,
port: 22000,
protocol: `TCP`,
},
{
type: `Port`,
name: `21027/udp`,
port: 21027,
protocol: `UDP`,
},
{
type: `Network`,
name: `primary`,
value: `home`
}
]
}