Create与Run Container怎么区分
更新:HHH   时间:2023-1-7


本篇内容主要讲解“Create与Run Container怎么区分”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Create与Run Container怎么区分”吧!

you should make sence these points:

  1. runC create command 和 run command的流程入口统一从/runc/utils_linux.go#334 main.startContainer方法,通过create flag进行区分。

  2. 业务逻辑中,主要有两个step构成:

  • firstly create container filesystem and construct a linuxcontainer object by creatContainer function.

  • secondly start process in container by runner.run function.

  1. 主要的逻辑在process的启动过程,注意以下几点:

  • 对于namespace的隔离,主要通过bootstrapData封装好clone flags。

  • 由sendconfig将bootstrapData封装的config传给容器起的init process。

  • 调用系统setns进行namespace和process 的associate。

  • oom_score_adj and rlimits等都在这里完成设置。

到此,相信大家对“Create与Run Container怎么区分”有了更深的了解,不妨来实际操作一番吧!这里是天达云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

返回云计算教程...