Docker install from tutorial mounting does not work

What is the problem you are having with rclone?

My config file is not found by the docker container

Run the command 'rclone version' and share the full output of the command.

clone v1.59.0

  • os/version: alpine 3.16.0 (64 bit)
  • os/kernel: 5.10.16.3-microsoft-standard-WSL2 (x86_64)
  • os/type: linux
  • os/arch: amd64
  • go/version: go1.18.3
  • go/linking: static
  • go/tags: none

Which cloud storage system are you using? (eg Google Drive)

minio

The command you were trying to run (eg rclone copy /tmp remote:tmp)

docker run --rm \
    --volume ~/.config/rclone:/config/rclone \
    --volume ~/data:/data:shared \
    rclone/rclone \
    listremotes

A log from the command with the -vv flag

2022/07/14 12:08:35 NOTICE: Config file "/config/rclone/rclone.conf" not found - using defaults

hi,

your command does not match the command from the docker install tutorial.

I removed the user yes, but that should not make a difference
I am however on windows
but even this does not work
docker run --rm --volume U:\config\rclone:/config/rclone rclone/rclone listremotes

oh, on windows.

this wored for me

docker run --rm ^
	--volume c:\data\rclone\config:/config/rclone ^
	rclone/rclone ^
	listremotes

Ah okay solved in on my side: I was using a network drive and docker did not like that

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