I've setup a comtainer with this file
services:
rclone:
image: rclone/rclone
container_name: rclone
environment:
- TZ=Europe/Zurich
- PUID=1001
- PGID=100
volumes:
- ./config:/config/rclone
- /pool0/rclone/dropbox:/data
command: >
mount Dropbox:/ /data
--allow-other
--allow-non-empty
--vfs-cache-mode full
--dir-cache-time 72h
--poll-interval 15s
--verbose
--uid 1001
--gid 100
cap_add:
- SYS_ADMIN
devices:
- /dev/fuse
security_opt:
- apparmor:unconfined
privileged: true
Display More
and created the apprpriate rclone.conf file with the token for my Dropbox account. I get no errors and even got rclone to see the server:
got me
QuoteTotal: 4.500 GiB
Used: 73.761 MiB
Free: 4.428 GiB
But unfortunately no files are synced but likewise no errors are logged:
Quoterclone | 2025/11/04 22:35:49 INFO : Dropbox root '': vfs cache: cleaned: objects 0 (was 0) in use 0, to upload 0, uploading 0, total size 0 (was 0)
rclone | 2025/11/04 22:36:49 INFO : Dropbox root '': vfs cache: cleaned: objects 0 (was 0) in use 0, to upload 0, uploading 0, total size 0 (was 0)
rclone | 2025/11/04 22:37:49 INFO : Dropbox root '': vfs cache: cleaned: objects 0 (was 0) in use 0, to upload 0, uploading 0, total size 0 (was 0)
Has someone else more luck?