Merge pull request #1293 from justincormack/ipc-typo

Fix typo/copy paste for IPC namespaces
This commit is contained in:
Riyaz Faizullabhoy 2017-03-13 15:52:58 +00:00 committed by GitHub
commit 0517cb6346

View File

@ -83,7 +83,7 @@ func ConfigToRun(order int, path string, image *MobyImage) []string {
} }
if image.Ipc != "" { if image.Ipc != "" {
// TODO only "host" supported // TODO only "host" supported
args = append(args, "--ipc="+image.Pid) args = append(args, "--ipc="+image.Ipc)
} }
for _, bind := range image.Binds { for _, bind := range image.Binds {
args = append(args, "-v", bind) args = append(args, "-v", bind)