From e5c1db75e0082734674a4faeee13a4eaef2dce98 Mon Sep 17 00:00:00 2001 From: Lucas Date: Fri, 23 Jan 2026 11:07:26 +0000 Subject: [PATCH] chore: manage version and remove unused ports --- docker-compose.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 93fa51d..b22d548 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,20 +1,18 @@ services: syncthing: - image: syncthing/syncthing + image: syncthing/syncthing:2.0.13 container_name: syncthing restart: always - volumes: - - ./data:/var/syncthing environment: - PUID=1000 - PGID=1000 + volumes: + - ./data:/var/syncthing networks: - reverse-proxy ports: - - "8384:8384" - "22000:22000/tcp" - "22000:22000/udp" - - "21027:21027/udp" healthcheck: test: curl -fkLsS -m 2 127.0.0.1:8384/rest/noauth/health | grep -o --color=never OK || exit 1 interval: 1m