Syncthing

Syncthing - Continuous file synchronization program

8384
Default Port
1
Services
9.5/20
Complexity
Low
Memory Usage
Configuration

Installation Command

blastdock init syncthing

Template Overview

Everything you need to deploy Syncthing with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Syncthing
linuxserver/syncthing:latest
Categories
File Management
Resource Requirements
CPU: Low, Memory: Low , Storage Required

Quick Commands

blastdock init Initialize new project
blastdock deploy Deploy the application
blastdock status Check deployment status
blastdock logs View application logs

Quick Installation

Get Syncthing up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Syncthing with:

Terminal
blastdock init syncthing

Interactive mode:

Terminal
blastdock init syncthing -i

What's Included

Syncthing
Container service

BlastDock Commands

blastdock templates List available templates
blastdock status project Check deployment status
blastdock logs project View application logs
blastdock stop project Stop deployment

Configuration Options

Customize your Syncthing installation with these configuration options.

3
Required Fields
0
Optional Fields
0
Auto-Generated Passwords

Web Port

Web interface port

port
Default: 8384
Required: Yes

Listen Port

Listen port

port
Default: 22000
Required: Yes

Discovery Port

Discovery port

port
Default: 21027
Required: Yes

Docker Compose

Complete Docker Compose configuration for Syncthing deployment.

1
Services
2
Volumes
1
Networks
3
Exposed Ports
docker-compose.yml
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