Skip to content

Commit b366bec

Browse files
committed
add syncthing
1 parent c8eba65 commit b366bec

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -451,6 +451,7 @@ A collection of delicious docker recipes.
451451
- [x] jira
452452
- [x] strapi/strapi
453453
- [x] amancevice/superset
454+
- [x] syncthing/syncthing
454455
- [x] tensorflow
455456
- [x] serving
456457
- [x] tile38/tile38

syncthing/README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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

syncthing/docker-compose.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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

0 commit comments

Comments
 (0)