From b86b5244757cbb7b498824949eb9d5943c0a8b77 Mon Sep 17 00:00:00 2001 From: Valentin Haudiquet Date: Fri, 17 Oct 2025 10:38:21 +0200 Subject: [PATCH] syncthing: fix reverse proxy --- docker/personal/syncthing/docker-compose.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docker/personal/syncthing/docker-compose.yml b/docker/personal/syncthing/docker-compose.yml index d5f4c69..55ba4e0 100644 --- a/docker/personal/syncthing/docker-compose.yml +++ b/docker/personal/syncthing/docker-compose.yml @@ -3,7 +3,6 @@ services: image: syncthing/syncthing:2.0 container_name: syncthing-valentin hostname: syncthing-valentin - network_mode: host environment: - PUID=1000 - PGID=1000 @@ -19,6 +18,9 @@ services: published: 21027 mode: host - 8384 + networks: + - default + - proxy labels: - "traefik.enable=true" - "traefik.http.routers.syncthing-valentin.rule=Host(`syncthing-valentin.lan`)" @@ -47,3 +49,8 @@ volumes: type: 'nfs' o: 'addr=truenas.lan' device: ':/mnt/main_storage/valentin/Photos' + +networks: + proxy: + external: true + name: proxy