Mount Script的参数 参考如下: #!/bin/bash #---------------------------------------------------------------------------- #first section makes the folders for the mount in the /mnt/user/dy folder so docker containers can have access #there are 1 entries below as in the video i had 3 remotes ggy home6 vr #you only need as many as what you need to mount for dockers or a network share mkdir -p /mnt/user/dy/ggy mkdir -p /mnt/user/dy/home6 mkdir -p /mnt/user/dy/vr #This section mounts the various cloud storage into the folders that were created above. rclone mount --max-read-ahead 1024k --allow-other ggy: /mnt/user/dy/ggy & rclone mount --max-read-ahead 1024k --allow-other home6: /mnt/user/dy/home6 & rclone mount --max-read-ahead 1024k --allow-other vr: /mnt/user/dy/vr &