Docker daemon processes

独自空忆成欢 提交于 2019-12-11 10:14:35

问题


I have found, that Docker daemon runs more than in one instance. I have got PID(13399) with service docker status, but there are also different PIDs. I have created only one container.


回答1:


As you can see in the list the stats are basically the same (MEM, etc.). These processes are actually just forks from the original process.

Forking is usually used to execute another application in the environment of the parent process (in this case: docker). I don't know what docker specifically uses it for, there are many possibilities.

Some more information on the topic forking.



来源:https://stackoverflow.com/questions/33420700/docker-daemon-processes

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!