diff --git a/Rclone.md b/Rclone.md index ecec428..e44086d 100644 --- a/Rclone.md +++ b/Rclone.md @@ -57,3 +57,28 @@ Sometimes it shows this kind of message: ``` 2022/12/27 10:22:13 NOTICE: S3 bucket wekan path files: Streaming uploads using chunk size 5Mi will have maximum file size of 48.828Gi ``` +## Docker + +Rclone, short story: +``` +rclone mount minio:wekan/files /var/lib/docker/volumes/wekan_wekan-files/_data --vfs-cache-mode minimal +``` +Longer story: + +`docker-compose.yml` at https://github.com/wekan/wekan +``` +- WRITABLE_PATH=/data +``` +Docker volumes are there: +``` +sudo ls /var/lib/docker/volumes/ + +wekan_wekan-db-dump +wekan_wekan-db +wekan_wekan-files +``` +Directories there are: +``` +/var/lib/docker/volumes/_data/attachments +/var/lib/docker/volumes/_data/avatars +```