Ulimits in Docker host vs container
问题 I wasn't able to find straight answer, to this question, but here it is: Let's say that I have a host which has max open files 1024: [root@host]# ulimit -a open files (-n) 1024 and a docker container running in that host with: [root@container]# ulimit -a open files (-n) 1048576 So will I have a problem in container if I try to open more then 1024 files? I think real limit in this case for container will be 1024 files. What do you think? 回答1: Although its a little bit late, I just want to