Skip to content

Commit be72d92

Browse files
author
pmoya-in-the-web
committed
Added some documentation
1 parent ac3be8a commit be72d92

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

docs/Containers/Syncthing.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Syncthing
2+
3+
Syncthing is a continuous file synchronization program. It synchronizes files between two or more computers in real time, safely protected from prying eyes. Your data is your data alone and you deserve to choose where it is stored, whether it is shared with some third party, and how it's transmitted over the internet.
4+
5+
Forget about using propietary solutions and take control of your data. Syncthing is an open source solution for synchronizing your data in a p2p way.
6+
7+
## References
8+
9+
- [Syncthing home page](https://syncthing.net/)
10+
- [GitHub repository](https://github.com/syncthing/syncthing)
11+
- [linuxserver.io docker image](https://docs.linuxserver.io/images/docker-syncthing) - The one used here
12+
- [Official Syncthing docker image](https://hub.docker.com/r/syncthing/syncthing) - Not the one used here
13+
14+
- For more information about official syncthing image have a look at [here](https://github.com/syncthing/syncthing/blob/main/README-Docker.md)
15+
16+
## Web interface
17+
18+
The web UI can be found on `yourip:8384`
19+
20+
## Data & volumes
21+
22+
Configuration data is available under `/config` containers directroy and mapped to `./volumes/syncthing/config` .
23+
24+
The data you want to sync must be under the same directory as configuration one. By default, Syncthing creates a `Sync` subdirectory
25+
26+
## Ports
27+
28+
Have a look at `~/IOTStack/.templates/syncthing/service.yml` or linuxserve docker documentation, by the way, used ports are;
29+
30+
```
31+
ports:
32+
- 8384:8384 # Web UI
33+
- 22000:22000/tcp # TCP file transfers
34+
- 22000:22000/udp # QUIC file transfers
35+
- 21027:21027/udp # Receive local discovery broadcasts
36+
```
37+
38+

0 commit comments

Comments
 (0)