Docker message No log line matching the '' filter

Hello,
I’m trying to deploy rclone with Docker Compose, but I’m having a problem, the container stops with the following message:

No log line matching the ‘’ filter

Below is my YAML file :

name: rclone_sync
services:
rclone:
volumes:
/mnt/DisqueB/musique:/data
/mnt/DisqueB/rclone:/config/rclone
/etc/passwd:/etc/passwd:ro
/etc/group:/etc/group:ro
user: 0:0
devices:
/dev/fuse
cap_add:
SYS_ADMIN
security_opt:
apparmor:unconfined
image: rclone/rclone
command: sync /data musique:/

Can anyone help me solve this problem?

Thanks in advance

I would start from running docker compose from the command line with the logs visible:
docker compose up

This will show you the full logs and let you see where it’s actually failing:

It should tell you something like:
“Failed to load config file”
“didn’t find section in config file”
“unknown remote ‘musique’”

You should be able to confirm the log file exists where you told it that it would exist:
ls -l /mnt/DisqueB/rclone/rclone.conf

I also don’t see that you set the environment variable of:

environment:

  • RCLONE_CONFIG=/config/rclone/rclone.conf

Hope this helps.

  • Damon1974
1 Like

This configuration works :

Thank you Damon1974.

If this worked, please mark the post as the correct solution. Glad this was helpful @claude

I didn’t know that “Cloud Sync Tasks” uses Rclone, so Rclone in Docker is less useful.