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
- name - name of remote
+- parameters - a map of { “key”: “value” } pairs
- type - type of the new remote
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:
+
+- name - name of remote to delete
+
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
- name - name of remote
+- parameters - a map of { “key”: “value” } pairs
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
- name - name of remote
+- parameters - a map of { “key”: “value” } pairs
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
+
+- New Features
+
+- build: Add Docker workflow support (Alfonso Montero)
+
+- Bug Fixes
+
+- accounting: Fix locking in Transfer to avoid deadlock with –progress (Nick Craig-Wood)
+- docs: Fix template argument for mktemp in install.sh (Cnly)
+- operations: Fix -u/–update with google photos / files of unknown size (Nick Craig-Wood)
+- rc: Fix docs for config/create /update /password (Nick Craig-Wood)
+
+- Google Cloud Storage
+
+- Fix need for elevated permissions on SetModTime (Nick Craig-Wood)
+
+
v1.49.1 - 2019-08-28
Point release to fix config bug and google photos backend.
diff --git a/MANUAL.md b/MANUAL.md
index 64c7e7b54..31f922dd0 100644
--- a/MANUAL.md
+++ b/MANUAL.md
@@ -1,6 +1,6 @@
% rclone(1) User Manual
% Nick Craig-Wood
-% Aug 28, 2019
+% Sep 08, 2019
# Rclone - rsync for cloud storage
@@ -151,6 +151,36 @@ Run `rclone config` to setup. See [rclone config docs](https://rclone.org/docs/)
rclone config
+## Install with docker ##
+
+The rclone maintains a [docker image for rclone](https://hub.docker.com/r/rclone/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](https://golang.org/) 1.7
@@ -7010,6 +7040,7 @@ Show statistics for the cache remote.
This takes the following parameters
- name - name of remote
+- parameters - a map of \{ "key": "value" \} pairs
- type - type of the new remote
@@ -7020,6 +7051,7 @@ Authentication is required for this call.
### config/delete: Delete a remote in the config file. {#config/delete}
Parameters:
+
- name - name of remote to delete
See the [config delete command](https://rclone.org/commands/rclone_config_delete/) command for more information on the above.
@@ -7060,6 +7092,7 @@ Authentication is required for this call.
This takes the following parameters
- name - name of remote
+- parameters - a map of \{ "key": "value" \} pairs
See the [config password command](https://rclone.org/commands/rclone_config_password/) command for more information on the above.
@@ -7080,6 +7113,7 @@ Authentication is required for this call.
This takes the following parameters
- name - name of remote
+- parameters - a map of \{ "key": "value" \} pairs
See the [config update command](https://rclone.org/commands/rclone_config_update/) command for more information on the above.
@@ -8245,7 +8279,7 @@ These flags are available for every command.
--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)
```
@@ -18466,6 +18500,18 @@ to override the default choice.
# Changelog
+## v1.49.2 - 2019-09-08
+
+* New Features
+ * build: Add Docker workflow support (Alfonso Montero)
+* Bug Fixes
+ * accounting: Fix locking in Transfer to avoid deadlock with --progress (Nick Craig-Wood)
+ * docs: Fix template argument for mktemp in install.sh (Cnly)
+ * operations: Fix -u/--update with google photos / files of unknown size (Nick Craig-Wood)
+ * rc: Fix docs for config/create /update /password (Nick Craig-Wood)
+* Google Cloud Storage
+ * Fix need for elevated permissions on SetModTime (Nick Craig-Wood)
+
## v1.49.1 - 2019-08-28
Point release to fix config bug and google photos backend.
diff --git a/MANUAL.txt b/MANUAL.txt
index 22ea30dfb..d33f6f7c8 100644
--- a/MANUAL.txt
+++ b/MANUAL.txt
@@ -1,6 +1,6 @@
rclone(1) User Manual
Nick Craig-Wood
-Aug 28, 2019
+Sep 08, 2019
@@ -164,6 +164,33 @@ 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.
@@ -6650,6 +6677,7 @@ config/create: create the config for a remote. {#config/create}
This takes the following parameters
- name - name of remote
+- parameters - a map of { “key”: “value” } pairs
- type - type of the new remote
See the config create command command for more information on the above.
@@ -6658,7 +6686,9 @@ 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:
+
+- name - name of remote to delete
See the config delete command command for more information on the above.
@@ -6695,6 +6725,7 @@ config/password: password the config for a remote. {#config/password}
This takes the following parameters
- name - name of remote
+- parameters - a map of { “key”: “value” } pairs
See the config password command command for more information on the
above.
@@ -6715,6 +6746,7 @@ config/update: update the config for a remote. {#config/update}
This takes the following parameters
- name - name of remote
+- parameters - a map of { “key”: “value” } pairs
See the config update command command for more information on the above.
@@ -7824,7 +7856,7 @@ These flags are available for every command.
--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)
@@ -17923,6 +17955,23 @@ override the default choice.
CHANGELOG
+v1.49.2 - 2019-09-08
+
+- New Features
+ - build: Add Docker workflow support (Alfonso Montero)
+- Bug Fixes
+ - accounting: Fix locking in Transfer to avoid deadlock with
+ –progress (Nick Craig-Wood)
+ - docs: Fix template argument for mktemp in install.sh (Cnly)
+ - operations: Fix -u/–update with google photos / files of unknown
+ size (Nick Craig-Wood)
+ - rc: Fix docs for config/create /update /password (Nick
+ Craig-Wood)
+- Google Cloud Storage
+ - Fix need for elevated permissions on SetModTime (Nick
+ Craig-Wood)
+
+
v1.49.1 - 2019-08-28
Point release to fix config bug and google photos backend.
diff --git a/docs/content/changelog.md b/docs/content/changelog.md
index c34473361..3b9c96548 100644
--- a/docs/content/changelog.md
+++ b/docs/content/changelog.md
@@ -1,11 +1,23 @@
---
title: "Documentation"
description: "Rclone Changelog"
-date: "2019-08-28"
+date: "2019-09-08"
---
# Changelog
+## v1.49.2 - 2019-09-08
+
+* New Features
+ * build: Add Docker workflow support (Alfonso Montero)
+* Bug Fixes
+ * accounting: Fix locking in Transfer to avoid deadlock with --progress (Nick Craig-Wood)
+ * docs: Fix template argument for mktemp in install.sh (Cnly)
+ * operations: Fix -u/--update with google photos / files of unknown size (Nick Craig-Wood)
+ * rc: Fix docs for config/create /update /password (Nick Craig-Wood)
+* Google Cloud Storage
+ * Fix need for elevated permissions on SetModTime (Nick Craig-Wood)
+
## v1.49.1 - 2019-08-28
Point release to fix config bug and google photos backend.
diff --git a/docs/content/commands/rclone.md b/docs/content/commands/rclone.md
index 63abf6cd9..c7791126b 100644
--- a/docs/content/commands/rclone.md
+++ b/docs/content/commands/rclone.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone"
slug: rclone
url: /commands/rclone/
diff --git a/docs/content/commands/rclone_about.md b/docs/content/commands/rclone_about.md
index b3e10bc7b..86f773b97 100644
--- a/docs/content/commands/rclone_about.md
+++ b/docs/content/commands/rclone_about.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone about"
slug: rclone_about
url: /commands/rclone_about/
diff --git a/docs/content/commands/rclone_authorize.md b/docs/content/commands/rclone_authorize.md
index 042f9af83..c92a842e3 100644
--- a/docs/content/commands/rclone_authorize.md
+++ b/docs/content/commands/rclone_authorize.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone authorize"
slug: rclone_authorize
url: /commands/rclone_authorize/
diff --git a/docs/content/commands/rclone_cachestats.md b/docs/content/commands/rclone_cachestats.md
index c23ff55da..85caa970a 100644
--- a/docs/content/commands/rclone_cachestats.md
+++ b/docs/content/commands/rclone_cachestats.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone cachestats"
slug: rclone_cachestats
url: /commands/rclone_cachestats/
diff --git a/docs/content/commands/rclone_cat.md b/docs/content/commands/rclone_cat.md
index 08d037114..a35e84f48 100644
--- a/docs/content/commands/rclone_cat.md
+++ b/docs/content/commands/rclone_cat.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone cat"
slug: rclone_cat
url: /commands/rclone_cat/
diff --git a/docs/content/commands/rclone_check.md b/docs/content/commands/rclone_check.md
index 3ae99afc1..c38efb063 100644
--- a/docs/content/commands/rclone_check.md
+++ b/docs/content/commands/rclone_check.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone check"
slug: rclone_check
url: /commands/rclone_check/
diff --git a/docs/content/commands/rclone_cleanup.md b/docs/content/commands/rclone_cleanup.md
index 94c72108c..2111e8db7 100644
--- a/docs/content/commands/rclone_cleanup.md
+++ b/docs/content/commands/rclone_cleanup.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone cleanup"
slug: rclone_cleanup
url: /commands/rclone_cleanup/
diff --git a/docs/content/commands/rclone_config.md b/docs/content/commands/rclone_config.md
index 4726660e5..c40d2264e 100644
--- a/docs/content/commands/rclone_config.md
+++ b/docs/content/commands/rclone_config.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone config"
slug: rclone_config
url: /commands/rclone_config/
diff --git a/docs/content/commands/rclone_config_create.md b/docs/content/commands/rclone_config_create.md
index 4cf5a847d..c34a8e8ce 100644
--- a/docs/content/commands/rclone_config_create.md
+++ b/docs/content/commands/rclone_config_create.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone config create"
slug: rclone_config_create
url: /commands/rclone_config_create/
diff --git a/docs/content/commands/rclone_config_delete.md b/docs/content/commands/rclone_config_delete.md
index 48263710f..0291b656f 100644
--- a/docs/content/commands/rclone_config_delete.md
+++ b/docs/content/commands/rclone_config_delete.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone config delete"
slug: rclone_config_delete
url: /commands/rclone_config_delete/
diff --git a/docs/content/commands/rclone_config_disconnect.md b/docs/content/commands/rclone_config_disconnect.md
index 256bf89c7..1ba13b599 100644
--- a/docs/content/commands/rclone_config_disconnect.md
+++ b/docs/content/commands/rclone_config_disconnect.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone config disconnect"
slug: rclone_config_disconnect
url: /commands/rclone_config_disconnect/
diff --git a/docs/content/commands/rclone_config_dump.md b/docs/content/commands/rclone_config_dump.md
index f56a64523..7e80712a0 100644
--- a/docs/content/commands/rclone_config_dump.md
+++ b/docs/content/commands/rclone_config_dump.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone config dump"
slug: rclone_config_dump
url: /commands/rclone_config_dump/
diff --git a/docs/content/commands/rclone_config_edit.md b/docs/content/commands/rclone_config_edit.md
index 56c246a2e..a281ac0fa 100644
--- a/docs/content/commands/rclone_config_edit.md
+++ b/docs/content/commands/rclone_config_edit.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone config edit"
slug: rclone_config_edit
url: /commands/rclone_config_edit/
diff --git a/docs/content/commands/rclone_config_file.md b/docs/content/commands/rclone_config_file.md
index a734aad8a..93cce3cca 100644
--- a/docs/content/commands/rclone_config_file.md
+++ b/docs/content/commands/rclone_config_file.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone config file"
slug: rclone_config_file
url: /commands/rclone_config_file/
diff --git a/docs/content/commands/rclone_config_password.md b/docs/content/commands/rclone_config_password.md
index 460b3ba47..381785a32 100644
--- a/docs/content/commands/rclone_config_password.md
+++ b/docs/content/commands/rclone_config_password.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone config password"
slug: rclone_config_password
url: /commands/rclone_config_password/
diff --git a/docs/content/commands/rclone_config_providers.md b/docs/content/commands/rclone_config_providers.md
index cb84e4a45..1c0b0d9d8 100644
--- a/docs/content/commands/rclone_config_providers.md
+++ b/docs/content/commands/rclone_config_providers.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone config providers"
slug: rclone_config_providers
url: /commands/rclone_config_providers/
diff --git a/docs/content/commands/rclone_config_reconnect.md b/docs/content/commands/rclone_config_reconnect.md
index 3915fd77a..4adb957cc 100644
--- a/docs/content/commands/rclone_config_reconnect.md
+++ b/docs/content/commands/rclone_config_reconnect.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone config reconnect"
slug: rclone_config_reconnect
url: /commands/rclone_config_reconnect/
diff --git a/docs/content/commands/rclone_config_show.md b/docs/content/commands/rclone_config_show.md
index df10b0f68..f8a260db7 100644
--- a/docs/content/commands/rclone_config_show.md
+++ b/docs/content/commands/rclone_config_show.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone config show"
slug: rclone_config_show
url: /commands/rclone_config_show/
diff --git a/docs/content/commands/rclone_config_update.md b/docs/content/commands/rclone_config_update.md
index 0c36636a5..9054b1008 100644
--- a/docs/content/commands/rclone_config_update.md
+++ b/docs/content/commands/rclone_config_update.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone config update"
slug: rclone_config_update
url: /commands/rclone_config_update/
diff --git a/docs/content/commands/rclone_config_userinfo.md b/docs/content/commands/rclone_config_userinfo.md
index 48098886a..e7dd689b4 100644
--- a/docs/content/commands/rclone_config_userinfo.md
+++ b/docs/content/commands/rclone_config_userinfo.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone config userinfo"
slug: rclone_config_userinfo
url: /commands/rclone_config_userinfo/
diff --git a/docs/content/commands/rclone_copy.md b/docs/content/commands/rclone_copy.md
index a29a0ca48..81272135a 100644
--- a/docs/content/commands/rclone_copy.md
+++ b/docs/content/commands/rclone_copy.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone copy"
slug: rclone_copy
url: /commands/rclone_copy/
diff --git a/docs/content/commands/rclone_copyto.md b/docs/content/commands/rclone_copyto.md
index 0b89082e6..bde9cf769 100644
--- a/docs/content/commands/rclone_copyto.md
+++ b/docs/content/commands/rclone_copyto.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone copyto"
slug: rclone_copyto
url: /commands/rclone_copyto/
diff --git a/docs/content/commands/rclone_copyurl.md b/docs/content/commands/rclone_copyurl.md
index f443507a1..c842481bf 100644
--- a/docs/content/commands/rclone_copyurl.md
+++ b/docs/content/commands/rclone_copyurl.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone copyurl"
slug: rclone_copyurl
url: /commands/rclone_copyurl/
diff --git a/docs/content/commands/rclone_cryptcheck.md b/docs/content/commands/rclone_cryptcheck.md
index 459a49e5d..6e79aecd8 100644
--- a/docs/content/commands/rclone_cryptcheck.md
+++ b/docs/content/commands/rclone_cryptcheck.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone cryptcheck"
slug: rclone_cryptcheck
url: /commands/rclone_cryptcheck/
diff --git a/docs/content/commands/rclone_cryptdecode.md b/docs/content/commands/rclone_cryptdecode.md
index 14a4d77e4..89055b877 100644
--- a/docs/content/commands/rclone_cryptdecode.md
+++ b/docs/content/commands/rclone_cryptdecode.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone cryptdecode"
slug: rclone_cryptdecode
url: /commands/rclone_cryptdecode/
diff --git a/docs/content/commands/rclone_dbhashsum.md b/docs/content/commands/rclone_dbhashsum.md
index 55fe8b81d..ea793c3f0 100644
--- a/docs/content/commands/rclone_dbhashsum.md
+++ b/docs/content/commands/rclone_dbhashsum.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone dbhashsum"
slug: rclone_dbhashsum
url: /commands/rclone_dbhashsum/
diff --git a/docs/content/commands/rclone_dedupe.md b/docs/content/commands/rclone_dedupe.md
index e6b11ba62..4011ed3b3 100644
--- a/docs/content/commands/rclone_dedupe.md
+++ b/docs/content/commands/rclone_dedupe.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone dedupe"
slug: rclone_dedupe
url: /commands/rclone_dedupe/
diff --git a/docs/content/commands/rclone_delete.md b/docs/content/commands/rclone_delete.md
index e4b86b113..cef2fed30 100644
--- a/docs/content/commands/rclone_delete.md
+++ b/docs/content/commands/rclone_delete.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone delete"
slug: rclone_delete
url: /commands/rclone_delete/
diff --git a/docs/content/commands/rclone_deletefile.md b/docs/content/commands/rclone_deletefile.md
index ef4794a59..305e11e78 100644
--- a/docs/content/commands/rclone_deletefile.md
+++ b/docs/content/commands/rclone_deletefile.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone deletefile"
slug: rclone_deletefile
url: /commands/rclone_deletefile/
diff --git a/docs/content/commands/rclone_genautocomplete.md b/docs/content/commands/rclone_genautocomplete.md
index 537e69b37..34375016d 100644
--- a/docs/content/commands/rclone_genautocomplete.md
+++ b/docs/content/commands/rclone_genautocomplete.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone genautocomplete"
slug: rclone_genautocomplete
url: /commands/rclone_genautocomplete/
diff --git a/docs/content/commands/rclone_genautocomplete_bash.md b/docs/content/commands/rclone_genautocomplete_bash.md
index 0c42aab97..60a4f5d53 100644
--- a/docs/content/commands/rclone_genautocomplete_bash.md
+++ b/docs/content/commands/rclone_genautocomplete_bash.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone genautocomplete bash"
slug: rclone_genautocomplete_bash
url: /commands/rclone_genautocomplete_bash/
diff --git a/docs/content/commands/rclone_genautocomplete_zsh.md b/docs/content/commands/rclone_genautocomplete_zsh.md
index cdaa7091c..dea9a1700 100644
--- a/docs/content/commands/rclone_genautocomplete_zsh.md
+++ b/docs/content/commands/rclone_genautocomplete_zsh.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone genautocomplete zsh"
slug: rclone_genautocomplete_zsh
url: /commands/rclone_genautocomplete_zsh/
diff --git a/docs/content/commands/rclone_gendocs.md b/docs/content/commands/rclone_gendocs.md
index 991cd394a..16bcbd8f8 100644
--- a/docs/content/commands/rclone_gendocs.md
+++ b/docs/content/commands/rclone_gendocs.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone gendocs"
slug: rclone_gendocs
url: /commands/rclone_gendocs/
diff --git a/docs/content/commands/rclone_hashsum.md b/docs/content/commands/rclone_hashsum.md
index 56928fb57..57d7df0a8 100644
--- a/docs/content/commands/rclone_hashsum.md
+++ b/docs/content/commands/rclone_hashsum.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone hashsum"
slug: rclone_hashsum
url: /commands/rclone_hashsum/
diff --git a/docs/content/commands/rclone_link.md b/docs/content/commands/rclone_link.md
index 33ebccb55..c0e853976 100644
--- a/docs/content/commands/rclone_link.md
+++ b/docs/content/commands/rclone_link.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone link"
slug: rclone_link
url: /commands/rclone_link/
diff --git a/docs/content/commands/rclone_listremotes.md b/docs/content/commands/rclone_listremotes.md
index fe3aabfe0..db027f7b5 100644
--- a/docs/content/commands/rclone_listremotes.md
+++ b/docs/content/commands/rclone_listremotes.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone listremotes"
slug: rclone_listremotes
url: /commands/rclone_listremotes/
diff --git a/docs/content/commands/rclone_ls.md b/docs/content/commands/rclone_ls.md
index 9f1011daf..2632bbf40 100644
--- a/docs/content/commands/rclone_ls.md
+++ b/docs/content/commands/rclone_ls.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone ls"
slug: rclone_ls
url: /commands/rclone_ls/
diff --git a/docs/content/commands/rclone_lsd.md b/docs/content/commands/rclone_lsd.md
index 2e980db57..6a1900c0a 100644
--- a/docs/content/commands/rclone_lsd.md
+++ b/docs/content/commands/rclone_lsd.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone lsd"
slug: rclone_lsd
url: /commands/rclone_lsd/
diff --git a/docs/content/commands/rclone_lsf.md b/docs/content/commands/rclone_lsf.md
index e01ee16c0..68829025e 100644
--- a/docs/content/commands/rclone_lsf.md
+++ b/docs/content/commands/rclone_lsf.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone lsf"
slug: rclone_lsf
url: /commands/rclone_lsf/
diff --git a/docs/content/commands/rclone_lsjson.md b/docs/content/commands/rclone_lsjson.md
index 9486715b7..42f799d63 100644
--- a/docs/content/commands/rclone_lsjson.md
+++ b/docs/content/commands/rclone_lsjson.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone lsjson"
slug: rclone_lsjson
url: /commands/rclone_lsjson/
diff --git a/docs/content/commands/rclone_lsl.md b/docs/content/commands/rclone_lsl.md
index 9403178a5..b62d0011a 100644
--- a/docs/content/commands/rclone_lsl.md
+++ b/docs/content/commands/rclone_lsl.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone lsl"
slug: rclone_lsl
url: /commands/rclone_lsl/
diff --git a/docs/content/commands/rclone_md5sum.md b/docs/content/commands/rclone_md5sum.md
index 765bea667..423130359 100644
--- a/docs/content/commands/rclone_md5sum.md
+++ b/docs/content/commands/rclone_md5sum.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone md5sum"
slug: rclone_md5sum
url: /commands/rclone_md5sum/
diff --git a/docs/content/commands/rclone_mkdir.md b/docs/content/commands/rclone_mkdir.md
index 396461f30..6944d5ef0 100644
--- a/docs/content/commands/rclone_mkdir.md
+++ b/docs/content/commands/rclone_mkdir.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone mkdir"
slug: rclone_mkdir
url: /commands/rclone_mkdir/
diff --git a/docs/content/commands/rclone_mount.md b/docs/content/commands/rclone_mount.md
index ca7907178..a03c18cd2 100644
--- a/docs/content/commands/rclone_mount.md
+++ b/docs/content/commands/rclone_mount.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone mount"
slug: rclone_mount
url: /commands/rclone_mount/
diff --git a/docs/content/commands/rclone_move.md b/docs/content/commands/rclone_move.md
index cd68fe7df..1b6c6281d 100644
--- a/docs/content/commands/rclone_move.md
+++ b/docs/content/commands/rclone_move.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone move"
slug: rclone_move
url: /commands/rclone_move/
diff --git a/docs/content/commands/rclone_moveto.md b/docs/content/commands/rclone_moveto.md
index d1ec16631..b7428cd5f 100644
--- a/docs/content/commands/rclone_moveto.md
+++ b/docs/content/commands/rclone_moveto.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone moveto"
slug: rclone_moveto
url: /commands/rclone_moveto/
diff --git a/docs/content/commands/rclone_ncdu.md b/docs/content/commands/rclone_ncdu.md
index 04f14c9d7..a176d13bf 100644
--- a/docs/content/commands/rclone_ncdu.md
+++ b/docs/content/commands/rclone_ncdu.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone ncdu"
slug: rclone_ncdu
url: /commands/rclone_ncdu/
diff --git a/docs/content/commands/rclone_obscure.md b/docs/content/commands/rclone_obscure.md
index f20588d1a..b5859d38e 100644
--- a/docs/content/commands/rclone_obscure.md
+++ b/docs/content/commands/rclone_obscure.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone obscure"
slug: rclone_obscure
url: /commands/rclone_obscure/
diff --git a/docs/content/commands/rclone_purge.md b/docs/content/commands/rclone_purge.md
index 90b7a7e56..378e45d19 100644
--- a/docs/content/commands/rclone_purge.md
+++ b/docs/content/commands/rclone_purge.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone purge"
slug: rclone_purge
url: /commands/rclone_purge/
diff --git a/docs/content/commands/rclone_rc.md b/docs/content/commands/rclone_rc.md
index 1b381b93a..2f6ca03a7 100644
--- a/docs/content/commands/rclone_rc.md
+++ b/docs/content/commands/rclone_rc.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone rc"
slug: rclone_rc
url: /commands/rclone_rc/
diff --git a/docs/content/commands/rclone_rcat.md b/docs/content/commands/rclone_rcat.md
index 1aba81e14..617777087 100644
--- a/docs/content/commands/rclone_rcat.md
+++ b/docs/content/commands/rclone_rcat.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone rcat"
slug: rclone_rcat
url: /commands/rclone_rcat/
diff --git a/docs/content/commands/rclone_rcd.md b/docs/content/commands/rclone_rcd.md
index 177735608..86f1a074a 100644
--- a/docs/content/commands/rclone_rcd.md
+++ b/docs/content/commands/rclone_rcd.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone rcd"
slug: rclone_rcd
url: /commands/rclone_rcd/
diff --git a/docs/content/commands/rclone_rmdir.md b/docs/content/commands/rclone_rmdir.md
index cf89844b6..de90da2f0 100644
--- a/docs/content/commands/rclone_rmdir.md
+++ b/docs/content/commands/rclone_rmdir.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone rmdir"
slug: rclone_rmdir
url: /commands/rclone_rmdir/
diff --git a/docs/content/commands/rclone_rmdirs.md b/docs/content/commands/rclone_rmdirs.md
index 428bf485c..b896f2047 100644
--- a/docs/content/commands/rclone_rmdirs.md
+++ b/docs/content/commands/rclone_rmdirs.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone rmdirs"
slug: rclone_rmdirs
url: /commands/rclone_rmdirs/
diff --git a/docs/content/commands/rclone_serve.md b/docs/content/commands/rclone_serve.md
index fa1fc0630..194695ab1 100644
--- a/docs/content/commands/rclone_serve.md
+++ b/docs/content/commands/rclone_serve.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone serve"
slug: rclone_serve
url: /commands/rclone_serve/
diff --git a/docs/content/commands/rclone_serve_dlna.md b/docs/content/commands/rclone_serve_dlna.md
index 670e7501d..f1c60303a 100644
--- a/docs/content/commands/rclone_serve_dlna.md
+++ b/docs/content/commands/rclone_serve_dlna.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone serve dlna"
slug: rclone_serve_dlna
url: /commands/rclone_serve_dlna/
diff --git a/docs/content/commands/rclone_serve_ftp.md b/docs/content/commands/rclone_serve_ftp.md
index 2c67f8e70..6b5ddf005 100644
--- a/docs/content/commands/rclone_serve_ftp.md
+++ b/docs/content/commands/rclone_serve_ftp.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone serve ftp"
slug: rclone_serve_ftp
url: /commands/rclone_serve_ftp/
diff --git a/docs/content/commands/rclone_serve_http.md b/docs/content/commands/rclone_serve_http.md
index ba6d7ac1f..422fe7ee2 100644
--- a/docs/content/commands/rclone_serve_http.md
+++ b/docs/content/commands/rclone_serve_http.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone serve http"
slug: rclone_serve_http
url: /commands/rclone_serve_http/
diff --git a/docs/content/commands/rclone_serve_restic.md b/docs/content/commands/rclone_serve_restic.md
index 9a39071bb..15a0d29cf 100644
--- a/docs/content/commands/rclone_serve_restic.md
+++ b/docs/content/commands/rclone_serve_restic.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone serve restic"
slug: rclone_serve_restic
url: /commands/rclone_serve_restic/
diff --git a/docs/content/commands/rclone_serve_sftp.md b/docs/content/commands/rclone_serve_sftp.md
index d2d7eea88..5a906654b 100644
--- a/docs/content/commands/rclone_serve_sftp.md
+++ b/docs/content/commands/rclone_serve_sftp.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone serve sftp"
slug: rclone_serve_sftp
url: /commands/rclone_serve_sftp/
diff --git a/docs/content/commands/rclone_serve_webdav.md b/docs/content/commands/rclone_serve_webdav.md
index 53a9d9376..20b3e2668 100644
--- a/docs/content/commands/rclone_serve_webdav.md
+++ b/docs/content/commands/rclone_serve_webdav.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone serve webdav"
slug: rclone_serve_webdav
url: /commands/rclone_serve_webdav/
diff --git a/docs/content/commands/rclone_settier.md b/docs/content/commands/rclone_settier.md
index a6bd89492..6c2337c38 100644
--- a/docs/content/commands/rclone_settier.md
+++ b/docs/content/commands/rclone_settier.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone settier"
slug: rclone_settier
url: /commands/rclone_settier/
diff --git a/docs/content/commands/rclone_sha1sum.md b/docs/content/commands/rclone_sha1sum.md
index 61b0b852d..a43855df0 100644
--- a/docs/content/commands/rclone_sha1sum.md
+++ b/docs/content/commands/rclone_sha1sum.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone sha1sum"
slug: rclone_sha1sum
url: /commands/rclone_sha1sum/
diff --git a/docs/content/commands/rclone_size.md b/docs/content/commands/rclone_size.md
index 6091a65c5..d981bf837 100644
--- a/docs/content/commands/rclone_size.md
+++ b/docs/content/commands/rclone_size.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone size"
slug: rclone_size
url: /commands/rclone_size/
diff --git a/docs/content/commands/rclone_sync.md b/docs/content/commands/rclone_sync.md
index 6cdec4f70..37e748497 100644
--- a/docs/content/commands/rclone_sync.md
+++ b/docs/content/commands/rclone_sync.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone sync"
slug: rclone_sync
url: /commands/rclone_sync/
diff --git a/docs/content/commands/rclone_touch.md b/docs/content/commands/rclone_touch.md
index 30293c7b5..6e67ff79a 100644
--- a/docs/content/commands/rclone_touch.md
+++ b/docs/content/commands/rclone_touch.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone touch"
slug: rclone_touch
url: /commands/rclone_touch/
diff --git a/docs/content/commands/rclone_tree.md b/docs/content/commands/rclone_tree.md
index 1a3395da5..f527726ab 100644
--- a/docs/content/commands/rclone_tree.md
+++ b/docs/content/commands/rclone_tree.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone tree"
slug: rclone_tree
url: /commands/rclone_tree/
diff --git a/docs/content/commands/rclone_version.md b/docs/content/commands/rclone_version.md
index 2f0743e25..93ad05897 100644
--- a/docs/content/commands/rclone_version.md
+++ b/docs/content/commands/rclone_version.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-28T17:50:40+01:00
+date: 2019-09-08T16:48:33+01:00
title: "rclone version"
slug: rclone_version
url: /commands/rclone_version/
diff --git a/docs/content/flags.md b/docs/content/flags.md
index 05fd2a6dc..b100f9f6f 100755
--- a/docs/content/flags.md
+++ b/docs/content/flags.md
@@ -1,7 +1,7 @@
---
title: "Global Flags"
description: "Rclone Global Flags"
-date: "2019-08-28T17:50:40+01:00"
+date: "2019-09-08T16:48:33+01:00"
---
# Global Flags
@@ -127,7 +127,7 @@ These flags are available for every command.
--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)
```
diff --git a/docs/layouts/partials/version.html b/docs/layouts/partials/version.html
index 18e438b09..cba2443b7 100644
--- a/docs/layouts/partials/version.html
+++ b/docs/layouts/partials/version.html
@@ -1 +1 @@
-v1.49.1
\ No newline at end of file
+v1.49.2
\ No newline at end of file
diff --git a/fs/version.go b/fs/version.go
index ce1fc200f..20c7a9e4b 100644
--- a/fs/version.go
+++ b/fs/version.go
@@ -1,4 +1,4 @@
package fs
// Version of rclone
-var Version = "v1.49.1"
+var Version = "v1.49.2"
diff --git a/go.mod b/go.mod
index 0e5c12304..db96915c3 100644
--- a/go.mod
+++ b/go.mod
@@ -67,3 +67,5 @@ require (
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/yaml.v2 v2.2.2
)
+
+go 1.13
diff --git a/rclone.1 b/rclone.1
index ddf06a9cb..032300ecf 100644
--- a/rclone.1
+++ b/rclone.1
@@ -1,7 +1,7 @@
.\"t
.\" Automatically generated by Pandoc 2.2.1
.\"
-.TH "rclone" "1" "Aug 28, 2019" "User Manual" ""
+.TH "rclone" "1" "Sep 08, 2019" "User Manual" ""
.hy
.SH Rclone \- rsync for cloud storage
.PP
@@ -264,6 +264,41 @@ See rclone config docs (https://rclone.org/docs/) for more details.
rclone\ config
\f[]
.fi
+.SS Install with docker
+.PP
+The rclone maintains a docker image for
+rclone (https://hub.docker.com/r/rclone/rclone).
+These images are autobuilt by docker hub from the rclone source based on
+a minimal Alpine linux image.
+.PP
+The \f[C]:latest\f[] tag will always point to the latest stable release.
+You can use the \f[C]:beta\f[] tag to get the latest build from master.
+You can also use version tags, eg \f[C]:1.49.1\f[], \f[C]:1.49\f[] or
+\f[C]:1\f[].
+.IP
+.nf
+\f[C]
+$\ 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
+\f[]
+.fi
+.PP
+You will probably want to mount rclone's config file directory or file
+from the host, or configure rclone with environment variables.
+.PP
+Eg to share your local config with the container
+.IP
+.nf
+\f[C]
+docker\ run\ \ \-v\ ~/.config/rclone:/root/.config/rclone\ rclone/rclone:latest\ listremotes
+\f[]
+.fi
.SS Install from source
.PP
Make sure you have at least Go (https://golang.org/) 1.7 installed.
@@ -8181,6 +8216,8 @@ This takes the following parameters
.IP \[bu] 2
name \- name of remote
.IP \[bu] 2
+parameters \- a map of { \[lq]key\[rq]: \[lq]value\[rq] } pairs
+.IP \[bu] 2
type \- type of the new remote
.PP
See the config create
@@ -8190,7 +8227,9 @@ more information on the above.
Authentication is required for this call.
.SS config/delete: Delete a remote in the config file. {#config/delete}
.PP
-Parameters: \- name \- name of remote to delete
+Parameters:
+.IP \[bu] 2
+name \- name of remote to delete
.PP
See the config delete
command (https://rclone.org/commands/rclone_config_delete/) command for
@@ -8233,6 +8272,8 @@ Authentication is required for this call.
This takes the following parameters
.IP \[bu] 2
name \- name of remote
+.IP \[bu] 2
+parameters \- a map of { \[lq]key\[rq]: \[lq]value\[rq] } pairs
.PP
See the config password
command (https://rclone.org/commands/rclone_config_password/) command
@@ -8254,6 +8295,8 @@ Authentication is required for this call.
This takes the following parameters
.IP \[bu] 2
name \- name of remote
+.IP \[bu] 2
+parameters \- a map of { \[lq]key\[rq]: \[lq]value\[rq] } pairs
.PP
See the config update
command (https://rclone.org/commands/rclone_config_update/) command for
@@ -10462,7 +10505,7 @@ These flags are available for every command.
\ \ \ \ \ \ \-\-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)
\f[]
.fi
@@ -23648,6 +23691,33 @@ Type: bool
.IP \[bu] 2
Default: false
.SH Changelog
+.SS v1.49.2 \- 2019\-09\-08
+.IP \[bu] 2
+New Features
+.RS 2
+.IP \[bu] 2
+build: Add Docker workflow support (Alfonso Montero)
+.RE
+.IP \[bu] 2
+Bug Fixes
+.RS 2
+.IP \[bu] 2
+accounting: Fix locking in Transfer to avoid deadlock with \[en]progress
+(Nick Craig\-Wood)
+.IP \[bu] 2
+docs: Fix template argument for mktemp in install.sh (Cnly)
+.IP \[bu] 2
+operations: Fix \-u/\[en]update with google photos / files of unknown
+size (Nick Craig\-Wood)
+.IP \[bu] 2
+rc: Fix docs for config/create /update /password (Nick Craig\-Wood)
+.RE
+.IP \[bu] 2
+Google Cloud Storage
+.RS 2
+.IP \[bu] 2
+Fix need for elevated permissions on SetModTime (Nick Craig\-Wood)
+.RE
.SS v1.49.1 \- 2019\-08\-28
.PP
Point release to fix config bug and google photos backend.