-
Notifications
You must be signed in to change notification settings - Fork 10
FAQ
Using rclone --exclude pattern matching:
Add - RCLONE_EXCLUDE=**/**{{(?i)(1080|720|480)}}**
to the environment variable section of the compose.
Add - RCLONE_EXCLUDE=**/**{{(?i)(4k|uhd|2160)}}**
to the environment variable section of the compose.
Using rclone --filter-from pattern matching:
Add - RCLONE_FILTER_FROM=/config/filter_include_2160.txt
to the environment variable section of the compose and add the below content to a filter_include_2160.txt
file in the config directory for the container.
- **/**{{(?i)(1080|720|480)}}**
+ *
Add - RCLONE_FILTER_FROM=/config/filter_exclude_2160.txt
to the environment variable section of the compose and the below content to a filter_exclude_2160.txt
file in the config directory for the container.
- **/**{{(?i)(4k|uhd|2160)}}**
+ *
Error response from daemon: path /your/host/path/pdrcrd/mnt
is mounted on /
but it is not a shared mount.
From the host OS, enter sudo mount --make-rshared /
Or if using a NAS device sudo mount --make-rshared /volume1/
If neither of the above resolves the error, ensure that docker is not installed via snap. Install docker via apt.