From 991496558ac6ced8c076e75fb00ac9647b508488 Mon Sep 17 00:00:00 2001 From: Jimmi Dyson Date: Thu, 14 Jan 2016 14:25:10 +0000 Subject: [PATCH] Bump version constant to 0.0.7 in preparation for a new release Signed-off-by: Jimmi Dyson --- main.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main.go b/main.go index 2f171a6e2df..3e8abc4cd6c 100644 --- a/main.go +++ b/main.go @@ -9,11 +9,11 @@ import ( ) const ( - version = "0.0.6" + version = "0.0.7" specConfig = "config.json" runtimeConfig = "runtime.json" 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 Initiative specification. @@ -23,11 +23,11 @@ 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 config files for your root filesystem with runc, you can execute +After creating config files for your root filesystem with runc, you can execute a container in your shell by running: # cd /mycontainer - # runc start [ -b bundle ] + # runc start [ -b bundle ] If not specified, the default value for the 'bundle' is the current directory. 'Bundle' is the directory where '` + specConfig + `' and '` + runtimeConfig + `' must be located.`