Sign inSign up

eisai/syncthing

By eisai

Updated 8 days ago

Syncthing for Windows.

Image
Content management system
0

1.4K

eisai/syncthing repository overview

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

Tag summary

Content type

Image

Digest

sha256:c41b11ca5

Size

2.3 GB

Last updated

8 days ago

docker pull eisai/syncthing