How do you add a local drive to the Webgui?

What is the problem you are having with rclone?

So I'm not having a problem with rclone itself but rather with the webgui on an Ubuntu install. Both my rclone mount and webgui are dockerised and work perfectly. When the mount is accessed I immediately see running jobs and progress reports. What I'm struggling with is adding a local drive in the explorer section, so I can send files to and from my remotes. I have a set up on Windows and it was as simple as adding a drive letter and the local drive would populate, however with my headless ubuntu box I'm a little lost. I tried adding the name of one of the directories mounted in the container, but that doesn't seem to show anything, but I may be missing something obvious. I've attached the script I use to call the docker container below, in case there is a problem there, but I'm inclined to think I'm just missing something silly.
any assistance would be greatly appreciated

What is your rclone version (output from rclone version)

rclone v1.53.2

  • os/arch: linux/arm64
  • go version: go1.15.3

Which OS you are using and how many bits (eg Windows 7, 64 bit)

Ubuntu 20.04.1 LTS (GNU/Linux 5.4.0-1022-raspi aarch64

Which cloud storage system are you using? (eg Google Drive)

Google Drive

The command you were trying to run (eg rclone copy /tmp remote:tmp)

docker run 
--restart=always 
--name rclone 
-p 5572:5572  
-e UMASK_SET=002 
-e PUID=1001 
-e PGID=1001  
-v /home/craftyclown/.config/Docker/Rclone/config:/config/rclone 
-v /home/craftyclown/.config/Docker/Rclone/logs:/logs 
-v /mnt/crafty:/mnt/crafty:shared 
-v /etc/passwd:/etc/passwd:ro 
-v /etc/group:/etc/group:ro 
--device /dev/fuse 
--cap-add SYS_ADMIN 
--security-opt apparmor:unconfined 
rclone/rclone:latest 
mount "RichFlixCrypt:/Encrypted/" /mnt/crafty/Skull 
--allow-other 
--dir-cache-time 1000h 
--log-level INFO 
--log-file /logs/Plex_Mount.log 
--poll-interval 15s 
--timeout 1h 
--umask 002 
--cache-dir=/mnt/crafty/rclone_cache 
--vfs-cache-mode full 
--vfs-cache-max-size 500G 
--vfs-cache-max-age 336h 
--uid 1001 
--gid 1001 
--tpslimit 3  
--bwlimit-file 20M 
--rc 
--rc-addr :5572 
--rc-web-gui 
--rc-user craftyclown 
--rc-pass ????

Any suggestions on how I can access local drives?

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.