OSError: [Errno 24] inotify instance limit reached

Cheerful!! I find a solution after nearly one year.
Other solution just change max_user_watches but not max_user_instances. We should change this config value in similar methods.
Change sysctl.conf in host machine not containers.

sudo nano /etc/sysctl.conf  

Add fs.inotify.max_user_instances = 1100000 to the bottom of file and save changes.
Then use sudo sysctl -p to reload config.

It is really strange that I’m stuck for this tiny difference. Luckily it finally worked.:wink:

2 Likes