mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-04-25 12:14:46 +02:00
add syncthing
This commit is contained in:
parent
c8eba657b7
commit
b366bece6a
@ -451,6 +451,7 @@ A collection of delicious docker recipes.
|
|||||||
- [x] jira
|
- [x] jira
|
||||||
- [x] strapi/strapi
|
- [x] strapi/strapi
|
||||||
- [x] amancevice/superset
|
- [x] amancevice/superset
|
||||||
|
- [x] syncthing/syncthing
|
||||||
- [x] tensorflow
|
- [x] tensorflow
|
||||||
- [x] serving
|
- [x] serving
|
||||||
- [x] tile38/tile38
|
- [x] tile38/tile38
|
||||||
|
7
syncthing/README.md
Normal file
7
syncthing/README.md
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
syncthing
|
||||||
|
=========
|
||||||
|
|
||||||
|
[Syncthing][1] is a continuous file synchronization program.
|
||||||
|
It synchronizes files between two or more computers.
|
||||||
|
|
||||||
|
[1]: https://github.com/syncthing/syncthing
|
16
syncthing/docker-compose.yml
Normal file
16
syncthing/docker-compose.yml
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
version: "3.8"
|
||||||
|
services:
|
||||||
|
syncthing:
|
||||||
|
image: syncthing/syncthing
|
||||||
|
ports:
|
||||||
|
- "8384:8384" # Web UI
|
||||||
|
- "22000:22000/tcp" # TCP file transfers
|
||||||
|
- "22000:22000/udp" # QUIC file transfers
|
||||||
|
- "21027:21027/udp" # Receive local discovery broadcasts
|
||||||
|
volumes:
|
||||||
|
- ./data:/var/syncthing
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
hostname: syncthing
|
||||||
|
restart: unless-stopped
|
Loading…
x
Reference in New Issue
Block a user