Skip to content

Commit

Permalink
Merge pull request #16 from Roshri/patch-1
Browse files Browse the repository at this point in the history
Update faq.mdx
  • Loading branch information
majora2007 authored Sep 23, 2024
2 parents 3d2f21f + e6f710f commit 8969a57
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion pages/troubleshooting/faq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -96,4 +96,23 @@ rclone mount [your mount name]: [local path to be mounted] \
--poll-interval 10s \
--attr-timeout 20s \
--vfs-cache-mode full
```
```

#### Q. I'm running on Docker, how can I increase `inotify` limits for folder watching?
A. You need to increase your underlying OS limit. Please be careful as this consumes more resources.
To check your current limits:

```
cat /proc/sys/fs/inotify/max_user_watches
```
Increase the limit (e.g., to 524288):
```
sudo sysctl fs.inotify.max_user_watches=524288
```
Make it persistent across reboots by adding this line to `/etc/sysctl.conf`:
```
fs.inotify.max_user_watches=524288
```



0 comments on commit 8969a57

Please sign in to comment.