Minor update to usage/help text
Seemed a little out of date Signed-off-by: Doug Davis <dug@us.ibm.com>
This commit is contained in:
parent
9be9157fc5
commit
88de2aee5a
|
@ -45,7 +45,7 @@ PID USER COMMAND
|
|||
|
||||
Below is a sample `config.json` configuration file. It assumes that
|
||||
the file-system is found in a directory called `rootfs` and there is a
|
||||
user named `daemon` defined within that file-system.
|
||||
user with uid and gid of `0` defined within that file-system.
|
||||
|
||||
```json
|
||||
{
|
||||
|
|
22
main.go
22
main.go
|
@ -9,20 +9,24 @@ import (
|
|||
|
||||
const (
|
||||
version = "0.2"
|
||||
usage = `Open Container Project runtime
|
||||
usage = `Open Container Initiative runtime
|
||||
|
||||
runc is a command line client for running applications packaged according to the Open Container Format (OCF) and is
|
||||
a compliant implementation of the Open Container Project specification.
|
||||
runc is a command line client for running applications packaged according to
|
||||
the Open Container Format (OCF) and is a compliant implementation of the
|
||||
Open Container Initiative specification.
|
||||
|
||||
runc integrates well with existing process supervisors to provide a production container runtime environment for
|
||||
applications. It can be used with your existing process monitoring tools and the container will be spawned as a direct
|
||||
child of the process supervisor.
|
||||
runc integrates well with existing process supervisors to provide a production
|
||||
container runtime environment for applications. It can be used with your
|
||||
existing process monitoring tools and the container will be spawned as a
|
||||
direct child of the process supervisor.
|
||||
|
||||
After creating a spec for your root filesystem with runc, you can execute a simple container in your shell by running:
|
||||
After creating a spec for your root filesystem with runc, you can execute a
|
||||
container in your shell by running:
|
||||
|
||||
cd /mycontainer
|
||||
runc
|
||||
`
|
||||
runc [ spec-file ]
|
||||
|
||||
If not specified, the default value for the 'spec-file' is 'config.json'. `
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
Loading…
Reference in New Issue