From 0d3e7dd672db2d3bcc1506d9962c44ede360c1c9 Mon Sep 17 00:00:00 2001 From: Justin Cormack Date: Mon, 13 Mar 2017 15:00:22 +0000 Subject: [PATCH] Fix typo/copy paste for IPC namespaces Signed-off-by: Justin Cormack --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index d086d2d58..a01932652 100644 --- a/config.go +++ b/config.go @@ -83,7 +83,7 @@ func ConfigToRun(order int, path string, image *MobyImage) []string { } if image.Ipc != "" { // TODO only "host" supported - args = append(args, "--ipc="+image.Pid) + args = append(args, "--ipc="+image.Ipc) } for _, bind := range image.Binds { args = append(args, "-v", bind)