Syncthing (stack)
Syncthing replaces proprietary sync and cloud services with something open, trustworthy and decentralized.
Type
Kubernetes
Platform
linux
Image
lscr.io/linuxserver/syncthing:latest
Ports
8384:838422000:22000/tcp22000:22000/udp21027:21027/udp
/config : /portainer/Files/AppData/Config/syncthing
/portainer : /portainer
unless-stopped
Sourced
Repo
Env Vars
PUID=1000PGID=1000TZ=Europe/Athens
Installation
Via Portainer
- Ensure both Docker and Portainer are installed, and up-to-date
- Log into your Portainer web UI
- Under Settings → App Templates, paste the below URL
- Head to Home → App Templates, and the list of apps will show up
- Select the app you wish to deploy, fill in any config options, and hit Deploy
Template Import URL
https://raw.githubusercontent.com/Lissy93/portainer-templates/main/templates.json
Show Me

Via Docker Run
docker run -d \
-p 8384:8384 \
-p 22000:22000/tcp \
-p 22000:22000/udp \
-p 21027:21027/udp \
-e PUID=${PUID} \
-e PGID=${PGID} \
-e TZ=${TZ} \
-v /portainer/Files/AppData/Config/syncthing:/config \
-v /portainer:/portainer \
--restart=unless-stopped \
lscr.io/linuxserver/syncthing:latest
Via Docker Compose
Save this file as docker-compose.yml and run docker-compose up -d
Use this only as a guide.
version: '3.8'
services:
syncthing-stack-:
image: lscr.io/linuxserver/syncthing:latest
ports:
- '8384:8384'
- 22000:22000:tcp
- 22000:22000:udp
- 21027:21027:udp
environment:
PUID: ''
PGID: ''
TZ: ''
volumes:
- /portainer/Files/AppData/Config/syncthing:/config
- /portainer:/portainer
Alternative Methods
For more installation options, see the Documentation in the GitHub repo