diff --git a/docker/syncthing/docker-compose.yml b/docker/syncthing/docker-compose.yml new file mode 100644 index 0000000..e9d2325 --- /dev/null +++ b/docker/syncthing/docker-compose.yml @@ -0,0 +1,15 @@ +--- +version: "3" +services: + syncthing: + image: syncthing/syncthing + container_name: syncthing + hostname: planck + environment: + - PUID=1000 + - PGID=1000 + volumes: + - ./config:/var/syncthing/config + - ./data:/var/syncthing/data + network_mode: host + restart: unless-stopped