Add detailed descriptions and examples of the bundle

Signed-off-by: Taeung Song <treeze.taeung@gmail.com>
This commit is contained in:
Taeung Song 2018-01-15 00:01:42 +09:00
parent ab4a819167
commit 2a98ede1fe
No known key found for this signature in database
GPG Key ID: 42451AA088447724
4 changed files with 10 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -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
View File

@ -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