Syncthing - Continuous file synchronization program
Everything you need to deploy Syncthing with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Syncthing up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Syncthing with:
blastdock init syncthing
Interactive mode:
blastdock init syncthing -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Syncthing installation with these configuration options.
Web interface port
Listen port
Discovery port
Complete Docker Compose configuration for Syncthing deployment.
version: '3.8'
services:
syncthing:
image: linuxserver/syncthing:latest
container_name: {{ project_name }}_syncthing
restart: unless-stopped
ports:
- "8384"
- "22000/tcp"
- "21027/udp"
environment:
0: PUID=1000
1: PGID=1000
2: TZ=Europe/London
volumes:
- /config
- /data
networks:
- syncthing_network
volumes:
syncthing_config:
driver: local
syncthing_data:
driver: local
networks:
syncthing_network:
driver: bridge