From 2d8c735aa6065b90772202e1215def59a992d035 Mon Sep 17 00:00:00 2001 From: Justin Cormack Date: Tue, 11 Apr 2017 11:56:41 +0100 Subject: [PATCH] Add back the runtime-config flag in ctr run This flag was already implemented but could not be specified any more. Signed-off-by: Justin Cormack --- cmd/ctr/run.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cmd/ctr/run.go b/cmd/ctr/run.go index 95d129dc2..419369111 100644 --- a/cmd/ctr/run.go +++ b/cmd/ctr/run.go @@ -42,6 +42,10 @@ var runCommand = cli.Command{ Usage: "runtime name (linux, windows, vmware-linux)", Value: "linux", }, + cli.StringFlag{ + Name: "runtime-config", + Usage: "set the OCI config file for the container", + }, cli.BoolFlag{ Name: "readonly", Usage: "set the containers filesystem as readonly",