I'm trying to run a docker image for mounting hubic (online storage) and expose that to the host
What is working so far is container mounting the fuse point correctly (to /mnt/hubic)
When running docker I am attempting to run with volume mapped as /path/on/host:/mnt/hubic this appears to work ( ie docker makes the directory if it doesn't exist) but the contents never appear. If I enter the container I can see the files from the online storage but the host folder contains nothing
Is there an option I'm missing to allow docker to do this ?
Command I am using to start the container
docker run -v ~/.hubicfuse:/root/.hubicfuse -v /tmp/mounted:/mnt/hubic --device /dev/fuse --cap-add SYS_ADMIN --security-opt apparmor:unconfined -it {container_name}