Introducing our new CEO Don Johnson - Read More

eisai/syncthing

By eisai

Updated 6 days ago

Syncthing for Windows.

Image
Content Management System
0

65

Only Windows build version 20348 or newer are supported (Win11, Server2022)

Preparation

Create the following folders, because docker will not automatically create folders for mount on Windows.

syncthing
├───conf
└───docker-compose.yaml

Docker Compose

networks:
  syncthing:

services:
  syncthing:
    container_name: syncthing
    image: eisai/syncthing:latest
    restart: no
    isolation: process
    networks:
      - syncthing
    ports:
      - "8384:8384"        # Web GUI
      - "22000:22000"
    volumes:
      - '.\conf:C:\Users\ContainerAdministrator\AppData\Local\Syncthing'
      - '<your folder to sync A>:C:\folderA'        # CHANGE THIS
      - '<your folder to sync B>:C:\folderB'        # CHANGE THIS

Reference

Syncthing Homepage
https://syncthing.net/

Install an ultralight docker engine on Windows
https://eisaichen.com/?p=76

Docker Pull Command

docker pull eisai/syncthing