I have created a compose.yml which contains:
volumes:
- /etc/localtime:/etc/localtime:ro
- ./config:/root/config
- configdata:/data:ro
- ./metadata:/metadata
- ./cache:/cache
- ./blobs:/blobs
- ./generated:/generated
volumes:
configdata:
driver: rclone
driver_opts:
remote: 'dellboy_local_encrypted_folder:'
allow_other: 'true'
vfs_cache_mode: full
poll_interval: 0
but whilst the folder mounts the contents do not appear in the docker container via the app, nor when doing a docker exec -it containername /bin/sh
rclone.conf contains:
[dellboy_local_encrypted_folder]
type = crypt
remote = dellboy_local_alias:
password = redacted
password2 = redacted
[dellboy_local_alias]
type = alias
remote = hashing_local:/mnt/Four_TB_Array/encrypted
[hashing_local]
type = hasher
remote = localdrive:
hashes = sha1
[localdrive]
type = local
rclone works locally with
/usr/bin/rclone mount dellboy_local_encrypted_folder: /home/simon/dellboy
rclone.conf copied to /var/lib/docker-plugins/rclone/config/rclone.conf
/etc/fuse.conf has user_allow_other set
TIA