From ce3250db38dca770b461d0c073b07a8b1dcaa35d Mon Sep 17 00:00:00 2001 From: Michele Cereda Date: Fri, 29 Dec 2023 22:53:46 +0100 Subject: [PATCH] feat: syncthing's docker compose --- docker/syncthing/docker-compose.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 docker/syncthing/docker-compose.yml 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