Problems with rclone-mount

Discussion about Docker
Locked
unixtall
Posts: 56
Joined: 31 Dec 2019, 19:02

Problems with rclone-mount

Post by unixtall »

Hi i am trying to connect to my google drive and mount the drive.

The problem is that when i try to mount the drive like that:

Code: Select all

docker run -d --name rclone-mount \
    --restart=unless-stopped \
    --cap-add SYS_ADMIN \
    --device /dev/fuse \
    --security-opt apparmor:unconfined \
    -e RemotePath="gdrive:" \
    -e ConfigName="rclone.conf" \
    -e MountCommands="--allow-other --allow-non-empty --dir-cache-time 48h --poll-interval 5m --buffer-size 256M" \
    -v /mnt/appdata/dockerContainersConfig/rclone/config:/config \
    -v /mnt/gdrive:/mnt/mediaefs:shared \
    mumiehub/rclone-mount
There is an error: Path /mnt/gdrive is mounted on /mnt/md0 but it is not a shared mount.

Someone has any idea what it is happennig?

Thanks you!
Locked