Hello,
Please advise on the best possible way to mount multiple Dropbox accounts on the same machine.
I would like to use rclone to mount five different accounts, but I do not want to access them all through the same IP. Instead, I would like to set one proxy IP per single mount. Ipv6 proxy would be the best.
After searching for a solution online, I found that using 5 rclone docker mounts would be the easiest solution. Is that correct?
I simply plan to add below in every single docker run command:
--env HTTP_PROXY="http://192.168.1.12:3128"
--env HTTPS_PROXY="http://192.168.1.12:3128"
I am concerned about accessing multiple accounts from the same IP, as I have encountered issues in the past and had to contact Dropbox support to have my clients accounts unbanned.
If I use rclone without mount (just for file copy), would the following command be correct or do I need to specify that rclone uses IPv6 only? My copy command would be as follows:
env http_proxy=http://127.0.0.1:1087 rclone copy a:foo b:bar
Any help would be really appreciated.
Thank you!