Merge pull request #33 from estesp/typo-and-usage-format

Update usage content and fix typos
This commit is contained in:
Mrunal Patel 2015-06-25 17:17:42 -07:00
commit 3fec3b37bf
1 changed files with 8 additions and 5 deletions

13
main.go
View File

@ -13,13 +13,16 @@ import (
const (
version = "0.1"
usage = `open container runtime
usage = `Open Container Project 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 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 direct
child of the process supervisor. nsinit can be used to manage the lifetime of a single container.
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.
Execute a simple container in your shell by running:
After creating a spec for your root filesystem with runc, you can execute a simple container in your shell by running:
cd /mycontainer
runc
@ -34,7 +37,7 @@ func init() {
if err := factory.StartInitialization(); err != nil {
fatal(err)
}
panic("--this line should never been executed, congradulations--")
panic("--this line should never been executed, congratulations--")
}
}