dockerfiles/rslsync
kev 82143a5b63 swith to new domain: easypi.pro 2017-05-08 07:05:07 +08:00
..
Dockerfile swith to new domain: easypi.pro 2017-05-08 07:05:07 +08:00
README.md update rslsync 2016-09-20 19:14:12 +08:00
docker-compose.yml update rslsync 2016-09-20 12:18:01 +08:00
rslsync.json update rslsync 2016-09-20 19:14:12 +08:00

rslsync

Resilio Sync is a fast, simple, and secure file syncing for IT and individuals.

docker-compose.yml

rslsync:
  image: vimagick/rslsync
  ports:
    - "8888:8888"
    - "55555:55555"
  volumes:
    - ./data:/data
    - ./rslsync.json:/etc/rslsync.json
  restart: always

rslsync.json

{
  "device_name": "Resilio Sync Server",
  "listening_port": 55555,
  "storage_path": "/data/system",
  "pid_file": "/var/run/rslsync.pid",
  "use_upnp": false,
  "download_limit": 0,
  "upload_limit": 0,
  "directory_root": "/data/user",
  "directory_root_policy": "all",
  "webui": {
    "listen": "0.0.0.0:8888",
    "login": "admin",
    "password": "admin"
  }
}

Please change the default login/password.

up and running

$ docker-compose run --rm rslsync rslsync --dump-sample-config > rslsync.json
$ vi rslsync.json
$ docker-compose up -d