Asking on how to setup rclone using docker and docker compose for completely beginner like me

Hi, is there documentation to setup rclone on server using docker and docker compose.. I new on docker stuff, the only thing I did with docker is installing n8n (nodemation) on my server..

hello and welcome to the forum,

https://rclone.org/install/#install-with-docker

when i ran this on terminal

docker run --rm \
    --volume ~/.config/rclone:/config/rclone \
    --volume ~/data:/data:shared \
    --user $(id -u):$(id -g) \
    --volume /etc/passwd:/etc/passwd:ro --volume /etc/group:/etc/group:ro \
    --device /dev/fuse --cap-add SYS_ADMIN --security-opt apparmor:unconfined \
    rclone/rclone \
    mount dropbox:Photos /data/mount &

resulting this:

2022/08/18 02:55:42 Failed to create file system for "dropbox:Photos": didn't find section in config file

is there something i miss?

on the host,
---- need to create a dropbox remote on the host and test.
post the output of rclone ls dropbbox: -vv

after that is working, then try docker,
try the example command using listremotes, not mount

when you posted there was a template of questions for you to answer.
help us to help you and take the time to provide the answers.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.