feat(syncthing): initial docker compose
This commit is contained in:
parent
65c69068af
commit
54decb6f28
1 changed files with 16 additions and 0 deletions
16
syncthing/docker-compose.yml
Normal file
16
syncthing/docker-compose.yml
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
services:
|
||||||
|
syncthing:
|
||||||
|
image: syncthing/syncthing:1.28.0
|
||||||
|
container_name: syncthing
|
||||||
|
hostname: white-syncthing
|
||||||
|
environment:
|
||||||
|
- PUID=1873
|
||||||
|
- PGID=1873
|
||||||
|
volumes:
|
||||||
|
- /opt/data/syncthing/data:/var/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
|
||||||
|
restart: unless-stopped
|
Loading…
Reference in a new issue