Add Syncthing Docker compose file

This commit is contained in:
moshferatu 2023-11-21 05:44:05 -08:00
parent 17e9739975
commit c651e6c095

17
syncthing.yaml Normal file
View File

@ -0,0 +1,17 @@
version: "3"
services:
syncthing:
image: lscr.io/linuxserver/syncthing:latest
container_name: syncthing
environment:
- PUID=
- PGID=
volumes:
- <docker directory>/syncthing/config:/config
- <data drive>:/data
ports:
- 8384:8384
- 22000:22000/tcp
- 22000:22000/udp
- 21027:21027/udp
restart: unless-stopped