From e98b61ceebaa9b4d436a375d37149dbf381bc305 Mon Sep 17 00:00:00 2001 From: Aditya Basu Date: Fri, 24 Mar 2023 07:42:58 -0400 Subject: [PATCH] docs: update install with docker interactive use * Install with docker: interactive use * remove extra mount from command * update listremotes --- docs/content/install.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/content/install.md b/docs/content/install.md index b8ec4c420..5f34af3d3 100644 --- a/docs/content/install.md +++ b/docs/content/install.md @@ -263,10 +263,16 @@ Here are some commands tested on an Ubuntu 18.04.3 host: # config on host at ~/.config/rclone/rclone.conf # data on host at ~/data +# add a remote interactively +docker run --rm -it \ + --volume ~/.config/rclone:/config/rclone \ + --user $(id -u):$(id -g) \ + rclone/rclone \ + config + # make sure the config is ok by listing the remotes docker run --rm \ --volume ~/.config/rclone:/config/rclone \ - --volume ~/data:/data:shared \ --user $(id -u):$(id -g) \ rclone/rclone \ listremotes