I have a mount (/mnt/xyz) which is mounted with FUSE, and I want to use it as a docker volume
docker run image -v /mnt/xyz/container-dir:/container-dir
But I get the error
docker: Error response from daemon: error while creating mount source path '/mnt/xyz/container-dir': mkdir /mnt/xyz: file exists.
Running the same image with docker run image -v /mnt/tmp:/container-dir
succeeds but I want the files on the remote dir, not locally on the ephemeral instance.
Some more info: The instance is a google cloud VM running Ubuntu 18.04. The mounted dir is a FUSE-mounted google drive, it's accessible and writeable.
Any help or ideas will be appreciated...