I got that error message when creating container.
Error response from daemon: too many open files
But I couldn\'t find any information abo
Default limit of number of open files is 1024. You can increase it in two ways:
Run the container with --ulimit parameter:
--ulimit
docker run --ulimit nofile=5000:5000 <image-tag>
Run the container with --privileged mode and execute ulimit -n 5000.
--privileged
ulimit -n 5000
You can find more information here.