From cd1c4b4af2305fbed224e9e766adc7588acf74cc Mon Sep 17 00:00:00 2001 From: Isaac Shoebottom Date: Wed, 18 Sep 2024 10:14:40 -0300 Subject: [PATCH] Add syncthing stack --- syncthing/docker-compose.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 syncthing/docker-compose.yml diff --git a/syncthing/docker-compose.yml b/syncthing/docker-compose.yml new file mode 100644 index 0000000..d707f0c --- /dev/null +++ b/syncthing/docker-compose.yml @@ -0,0 +1,18 @@ +version: "3" +services: + syncthing: + image: syncthing/syncthing + container_name: syncthing + hostname: syncthing + environment: + - TZ=America/Moncton + - PUID=1000 + - PGID=1000 + volumes: + - /docker/appdata/syncthing/Sync:/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 \ No newline at end of file