Docker: How to increase number of open files limit
The default limit for open files is 1024 in Docker containers. In Unix systems, you can increase the limit by following command:
$ ulimit -n 90000 which sets the limit to 90000. However, Docker does n...