0

我遵循了这个runc 教程,然后试图在我自己的机器上复制它。

当在具有 config.json 和 rootfs 目录的目录中时,最终命令是“sudo runc start”。

在教程中工作正常,但是在我的机器上我得到错误runc: "start" requires a minimum of 1 argument

有谁知道如何解决?

4

1 回答 1

1

您需要为容器指定一个名称。另请注意,最近 runC 的 UX 发生了变化。你会想要这样做:

% runc run container-name

或者使用 create-start split 命令:

% runc create container-name # Creates the container.
% runc start container-name # Starts the container process.
于 2016-11-21T08:02:15.700 回答