File tree 3 files changed +24
-0
lines changed
3 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -451,6 +451,7 @@ A collection of delicious docker recipes.
451
451
- [x] jira
452
452
- [x] strapi/strapi
453
453
- [x] amancevice/superset
454
+ - [x] syncthing/syncthing
454
455
- [x] tensorflow
455
456
- [x] serving
456
457
- [x] tile38/tile38
Original file line number Diff line number Diff line change
1
+ syncthing
2
+ =========
3
+
4
+ [ Syncthing] [ 1 ] is a continuous file synchronization program.
5
+ It synchronizes files between two or more computers.
6
+
7
+ [ 1 ] : https://github.com/syncthing/syncthing
Original file line number Diff line number Diff line change
1
+ version : " 3.8"
2
+ services :
3
+ syncthing :
4
+ image : syncthing/syncthing
5
+ ports :
6
+ - " 8384:8384" # Web UI
7
+ - " 22000:22000/tcp" # TCP file transfers
8
+ - " 22000:22000/udp" # QUIC file transfers
9
+ - " 21027:21027/udp" # Receive local discovery broadcasts
10
+ volumes :
11
+ - ./data:/var/syncthing
12
+ environment :
13
+ - PUID=1000
14
+ - PGID=1000
15
+ hostname : syncthing
16
+ restart : unless-stopped
You can’t perform that action at this time.
0 commit comments