Moving my Ubuntu RCLONE setup to my new Windows Computer using Docker and WSL2 and having some bind mount issues

What is the problem you are having with rclone?

My mount shows up within the docker container but I cant get the volume to pass through the container. All my other volumes are passing through the docker container except for my mount. I am only trying to access it via the linux subsystem which shows up empty. If i browse directly on the docker container I can see my mount being populated but I cant seem to see it from the linux subsystem passed through on a volume. Any ideas?

What is your rclone version (output from rclone version)

rclone latest docker image

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

Windows 10

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)

version: '3.8'
services:
  rclone:
    image: rclone/rclone:beta
    restart: always
    container_name: rclone
    ports:
      - "5572:5572"
    volumes:
      - $LMS/rclone/logs:/logs:rshared
      - /home/plex/mounts/GoogleDriveMedia:/GoogleDriveMedia:rshared
      - $LMS/rclone:/config/rclone:rshared
      - /etc/fuse.conf:/etc/fuse.conf
      - /etc/passwd:/etc/passwd:ro
      - /etc/group:/etc/group:ro
    cap_add:
      - SYS_ADMIN
    devices:
      - /dev/fuse
    security_opt:
      - apparmor:unconfined
    command: "mount GoogleDriveMedia: /GoogleDriveMedia --allow-other --dir-cache-time 72h --buffer-size 1G --drive-chunk-size 32M --timeout 1h --rc --vfs-read-chunk-size 64M --vfs-read-chunk-size-limit off --umask 002 --log-level DEBUG --log-file /logs/rclone.log --rc-web-gui --rc-web-gui-no-open-browser --rc-addr :5572 --rc-user admin --rc-pass password"

The rclone config contents with secrets removed.

Paste config here

A log from the command with the -vv flag

2020/09/04 00:16:39 NOTICE: A new release for gui is present at https://github.com/rclone/rclone-webui-react/releases/download/v2.0.3/currentbuild.zip
2020/09/04 00:16:39 NOTICE: Downloading webgui binary. Please wait. [Size: 4750769, Path :  /root/.cache/rclone/webgui/v2.0.3.zip]
2020/09/04 00:16:40 NOTICE: Unzipping webgui binary
2020/09/04 00:16:40 NOTICE: Serving Web GUI
2020/09/04 00:16:40 INFO  : Using --user admin --pass XXXX as authenticated user
2020/09/04 00:16:40 NOTICE: Serving remote control on http://[::]:5572/
2020/09/04 00:16:40 NOTICE: Web GUI is not automatically opening browser. Navigate to http://

Not a docker expert but I think you have to pass some more flags to docker in

Hopefully a docker expert will show up shortly!

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