This Docker image builds the latest beta from the rclone master brach, is based on Alpine Linux and includes the fuse library for mounting.
Visit http://rclone.org for detailed usage information.
docker run -it \
--cap-add SYS_ADMIN \
--device /dev/fuse \
-v /home/user/shared:/mnt/mountpoint \
-v /home/user/.rclone.conf:/etc/rclone.conf \
oddmouse/rclone \
rclone mount remote:path /mnt/mountpoint
command: rclone mount remote:path /mnt/mountpoint'
cap_add:
- SYS_ADMIN
devices:
- '/dev/fuse'
environment:
RCLONE_CONFIG_PASS: '********'
volumes:
- shared:/mnt/mountpoint
- /home/user/.rclone.conf:/etc/rclone.conf