From 1540711552b727771647455aeb17229d4e4ed099 Mon Sep 17 00:00:00 2001 From: Michele Cereda Date: Thu, 4 Jan 2024 23:34:38 +0100 Subject: [PATCH] fix: use the hostname variable --- docker/syncthing/docker-compose.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docker/syncthing/docker-compose.yml b/docker/syncthing/docker-compose.yml index e9d2325..85141a5 100644 --- a/docker/syncthing/docker-compose.yml +++ b/docker/syncthing/docker-compose.yml @@ -1,13 +1,14 @@ --- +# See https://github.com/syncthing/syncthing/blob/main/README-Docker.md version: "3" services: syncthing: - image: syncthing/syncthing + image: syncthing/syncthing:1.27.2 container_name: syncthing - hostname: planck + hostname: ${HOSTNAME} environment: - PUID=1000 - - PGID=1000 + - PGID=100 volumes: - ./config:/var/syncthing/config - ./data:/var/syncthing/data