Open the server Apps tab
Select the tutorial-vps VPS, open the Apps tab, and start a new app deployment. Keep sensitive server details hidden before capturing or sharing screenshots.


Continuous file synchronization between devices
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the Syncthing template in Server Compass to deploy continuous file synchronization on your VPS, then verify the web UI in a browser.
Select the tutorial-vps VPS, open the Apps tab, and start a new app deployment. Keep sensitive server details hidden before capturing or sharing screenshots.

Click New App and choose the template deployment path so Server Compass can load the built-in catalog.

Use the template picker search to find Syncthing in the Server Compass template catalog.

Choose the Syncthing template. Server Compass fills the web service, persistent config volume, web UI port, and sync/discovery ports.

Confirm the app name and compose service. In this run, the app was named syncthing-demo and used host port 8384 for the web UI.

Review the generated compose settings, confirm the Syncthing web UI and sync ports are available, and click Deploy.

Keep the deployment modal open while Server Compass uploads the compose file, pulls the Syncthing image, starts the container, and verifies the stack.

After deployment finishes, return to the Apps tab and confirm the Syncthing app is marked Running with its application URL available.

Open the application URL in a browser. The Syncthing web UI confirms the synchronization service is reachable.

The Syncthing web interface loaded successfully and displayed the device and folder dashboard.
It deploys the Syncthing container with a persistent config volume, a public web UI port, and the standard sync/discovery ports.
The tutorial used host port 8384, which maps to the Syncthing web UI on container port 8384. The template also exposes 22000 TCP/UDP and 21027 UDP for synchronization and discovery.
Prefer a VPN, IP allowlist, or authenticated reverse proxy. If the GUI is reachable from the public internet, set a strong GUI username and password immediately.
No. The deployment guide should live on the Syncthing template detail page and be linked from the reusable template deployment docs page.
Set up Syncthing yourself using Docker Compose and the command line.
Connect to your remote server using SSH. Make sure you have your server credentials ready.
# Log into your server
ssh root@<your-server-ip>
# If using key-based auth
ssh -i ~/.ssh/my-key root@<your-server-ip>First time? Docker not installed? Run: curl -fsSL https://get.docker.com | sh
Set up a directory to store your Docker configuration.
# Create and navigate to project directory
mkdir -p ~/apps/syncthing
cd ~/apps/syncthingAdd this configuration to your docker-compose.yml file:
services:
syncthing:
image: lscr.io/linuxserver/syncthing:latest
ports:
- "8384:8384"
- "22000:22000/tcp"
- "22000:22000/udp"
- "21027:21027/udp"
environment:
- PUID=1000
- PGID=1000
volumes:
- syncthing_config:/config
restart: unless-stopped
volumes:
syncthing_config:
PORTWeb UI port(default: 8384)Execute the deployment and check the container status.
# Deploy the application
docker compose up -d
# Check container health
docker compose ps
# Monitor logs
docker compose logs -f --tail=100Enable network access by updating your firewall rules.
# Allow the application port through firewall
sudo ufw allow 8384/tcp
sudo ufw reload
# Access your app at:
# http://your-server-ip:8384No terminal needed. Deploy Syncthing through a visual dashboard with automatic configuration.
After deploying Syncthing with Server Compass, complete these steps to finish setup
Access web UI
Set up GUI password
Add devices and folders to sync
Need help? Check out our documentation for detailed guides.
Common questions about self-hosting Syncthing
Simply download Server Compass, connect to your VPS, and select Syncthing from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
Syncthing requires a minimum of 128MB RAM. We recommend a VPS with at least 1024MB RAM for optimal performance. Any modern Linux server with Docker support will work.
Yes! Server Compass provides volume mapping that allows you to import existing data. You can also use standard Syncthing backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest Syncthing image will be pulled and deployed with zero downtime.
Syncthing is open-source software. You only pay for your VPS hosting (typically $5-20/month) and optionally Server Compass ($29 one-time). No subscription fees or per-seat pricing.
Download Server Compass and deploy Syncthing to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass