Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我遵循了这个runc 教程,然后试图在我自己的机器上复制它。
当在具有 config.json 和 rootfs 目录的目录中时,最终命令是“sudo runc start”。
在教程中工作正常,但是在我的机器上我得到错误runc: "start" requires a minimum of 1 argument
有谁知道如何解决?
您需要为容器指定一个名称。另请注意,最近 runC 的 UX 发生了变化。你会想要这样做:
% runc run container-name
或者使用 create-start split 命令:
% runc create container-name # Creates the container. % runc start container-name # Starts the container process.