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