diff --git a/MANUAL.html b/MANUAL.html index f3fd41ab7..fa4fe2e1f 100644 --- a/MANUAL.html +++ b/MANUAL.html @@ -17,7 +17,7 @@

rclone(1) User Manual

Nick Craig-Wood

-

Aug 28, 2019

+

Sep 08, 2019

Rclone - rsync for cloud storage

Rclone is a command line program to sync files and directories to and from:

@@ -134,6 +134,20 @@ sudo mv rclone /usr/local/bin/
cd .. && rm -rf rclone-*-osx-amd64 rclone-current-osx-amd64.zip

Run rclone config to setup. See rclone config docs for more details.

rclone config
+

Install with docker

+

The rclone maintains a docker image for rclone. These images are autobuilt by docker hub from the rclone source based on a minimal Alpine linux image.

+

The :latest tag will always point to the latest stable release. You can use the :beta tag to get the latest build from master. You can also use version tags, eg :1.49.1, :1.49 or :1.

+
$ docker pull rclone/rclone:latest
+latest: Pulling from rclone/rclone
+Digest: sha256:0e0ced72671989bb837fea8e88578b3fc48371aa45d209663683e24cfdaa0e11
+...
+$ docker run --rm rclone/rclone:latest version
+rclone v1.49.1
+- os/arch: linux/amd64
+- go version: go1.12.9
+

You will probably want to mount rclone’s config file directory or file from the host, or configure rclone with environment variables.

+

Eg to share your local config with the container

+
docker run  -v ~/.config/rclone:/root/.config/rclone rclone/rclone:latest listremotes

Install from source

Make sure you have at least Go 1.7 installed. Download go if necessary. The latest release is recommended. Then

git clone https://github.com/rclone/rclone.git
@@ -3301,12 +3315,16 @@ rclone rc cache/expire remote=/ withData=true

This takes the following parameters

See the config create command command for more information on the above.

Authentication is required for this call.

config/delete: Delete a remote in the config file. {#config/delete}

-

Parameters: - name - name of remote to delete

+

Parameters:

+

See the config delete command command for more information on the above.

Authentication is required for this call.

config/dump: Dumps the config file. {#config/dump}

@@ -3326,6 +3344,7 @@ rclone rc cache/expire remote=/ withData=true

This takes the following parameters

See the config password command command for more information on the above.

Authentication is required for this call.

@@ -3337,6 +3356,7 @@ rclone rc cache/expire remote=/ withData=true

This takes the following parameters

See the config update command command for more information on the above.

Authentication is required for this call.

@@ -4590,7 +4610,7 @@ Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total --use-json-log Use json log format. --use-mmap Use mmap allocator (see docs). --use-server-modtime Use server modified time instead of object metadata - --user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.49.1") + --user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.49.2") -v, --verbose count Print lots more stuff (repeat for more)

Backend Flags

These flags are available for every command. They control the backends and may be set in the config file.

@@ -12288,6 +12308,24 @@ $ tree /tmp/b

Changelog

+

v1.49.2 - 2019-09-08

+

v1.49.1 - 2019-08-28

Point release to fix config bug and google photos backend.