Fix typo/copy paste for IPC namespaces

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
This commit is contained in:
Justin Cormack 2017-03-13 15:00:22 +00:00
parent bafed87ead
commit 0d3e7dd672

View File

@ -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)