runc/man
Wang Long 74bfe500e4 start mulit-containers with `runc start` command
With this patch, `runc start` command can start mulit-containers
at one command this patch also checks the argument of the `start`
command.

root@ubuntu:# runc list
ID          PID         STATUS      BUNDLE         CREATED
a           0           stopped     /mycontainer   2016-09-23T08:56:42.754026567Z
b           62979       created     /mycontainer   2016-09-23T09:01:36.421976458Z
c           62993       running     /mycontainer   2016-09-23T09:01:38.105940389Z
d           63006       created     /mycontainer   2016-09-23T09:01:39.65441942Z
e           63020       created     /mycontainer   2016-09-23T09:01:40.989995515Z
root@ubuntu:# runc start
runc: "start" requires a minimum of 1 argument
root@ubuntu:# runc start a b c d e f
cannot start a container that has run and stopped
cannot start an already running container
container f is not exist
all or part of the containers start failed
root@ubuntu:# runc list
ID          PID         STATUS      BUNDLE         CREATED
a           0           stopped     /mycontainer   2016-09-23T08:56:42.754026567Z
b           62979       running     /mycontainer   2016-09-23T09:01:36.421976458Z
c           62993       running     /mycontainer   2016-09-23T09:01:38.105940389Z
d           63006       running     /mycontainer   2016-09-23T09:01:39.65441942Z
e           63020       running     /mycontainer   2016-09-23T09:01:40.989995515Z

Signed-off-by: Wang Long <long.wanglong@huawei.com>
2016-10-08 11:57:25 +08:00
..
README.md Add README.md for generating man pages 2016-03-04 11:14:12 -08:00
md2man-all.sh Add script to generate man pages from markdown 2016-03-04 11:14:12 -08:00
runc-checkpoint.8.md Update man pages to refect the latest cli change 2016-05-28 13:33:57 +08:00
runc-create.8.md Adjust man pages for create start split 2016-06-12 20:38:45 +08:00
runc-delete.8.md Add man pages in markdown format 2016-03-04 11:14:02 -08:00
runc-events.8.md Update man pages to refect the latest cli change 2016-05-28 13:33:57 +08:00
runc-exec.8.md exec: Support command arguments 2016-08-26 02:01:40 +00:00
runc-kill.8.md Add man pages in markdown format 2016-03-04 11:14:02 -08:00
runc-list.8.md Add runc list man change 2016-07-19 08:56:25 +08:00
runc-pause.8.md Add man pages in markdown format 2016-03-04 11:14:02 -08:00
runc-ps.8.md cli: Workaround for ps's argument 2016-07-07 18:17:13 +08:00
runc-restore.8.md Update man pages to refect the latest cli change 2016-05-28 13:33:57 +08:00
runc-resume.8.md Add man pages in markdown format 2016-03-04 11:14:02 -08:00
runc-run.8.md Adjust man pages for create start split 2016-06-12 20:38:45 +08:00
runc-spec.8.md Update man pages to refect the latest cli change 2016-05-28 13:33:57 +08:00
runc-start.8.md start mulit-containers with `runc start` command 2016-10-08 11:57:25 +08:00
runc-state.8.md Add man pages in markdown format 2016-03-04 11:14:02 -08:00
runc-update.8.md Update man pages to refect the latest cli change 2016-05-28 13:33:57 +08:00
runc.8.md Adjust man pages for create start split 2016-06-12 20:38:45 +08:00

README.md

runc man pages

This directory contains man pages for runc in markdown format.

To generate man pages from it, use this command

./md2man-all.sh

You will see man pages generated under the man8 directory.