Add detailed descriptions and examples of the bundle
Signed-off-by: Taeung Song <treeze.taeung@gmail.com>
This commit is contained in:
parent
ab4a819167
commit
2a98ede1fe
|
@ -16,7 +16,7 @@ are starting. The name you provide for the container instance must be unique on
|
|||
your host.`,
|
||||
Description: `The create command creates an instance of a container for a bundle. The bundle
|
||||
is a directory with a specification file named "` + specConfig + `" and a root
|
||||
filesystem.
|
||||
filesystem(default path: "rootfs").
|
||||
|
||||
The specification file includes an args parameter. The args parameter is used
|
||||
to specify command(s) that get run when the container is started. To change the
|
||||
|
|
|
@ -11,7 +11,10 @@ your host.
|
|||
# DESCRIPTION
|
||||
The create command creates an instance of a container for a bundle. The bundle
|
||||
is a directory with a specification file named "config.json" and a root
|
||||
filesystem.
|
||||
filesystem(default path: "rootfs"). For example, The bundle directory can be like below:
|
||||
|
||||
# ls mycontainer/
|
||||
config.json rootfs/
|
||||
|
||||
The specification file includes an args parameter. The args parameter is used
|
||||
to specify command(s) that get run when the container is started. To change the
|
||||
|
|
|
@ -11,7 +11,10 @@ your host.
|
|||
# DESCRIPTION
|
||||
The run command creates an instance of a container for a bundle. The bundle
|
||||
is a directory with a specification file named "config.json" and a root
|
||||
filesystem.
|
||||
filesystem(default path: "rootfs"). For example, The bundle directory can be like below:
|
||||
|
||||
# ls mycontainer/
|
||||
config.json rootfs/
|
||||
|
||||
The specification file includes an args parameter. The args parameter is used
|
||||
to specify command(s) that get run when the container is started. To change the
|
||||
|
|
2
run.go
2
run.go
|
@ -19,7 +19,7 @@ are starting. The name you provide for the container instance must be unique on
|
|||
your host.`,
|
||||
Description: `The run command creates an instance of a container for a bundle. The bundle
|
||||
is a directory with a specification file named "` + specConfig + `" and a root
|
||||
filesystem.
|
||||
filesystem(default patch: "rootfs").
|
||||
|
||||
The specification file includes an args parameter. The args parameter is used
|
||||
to specify command(s) that get run when the container is started. To change the
|
||||
|
|
Loading…
Reference in New Issue