Add in sysctl container

- based on @riyazdf earlier unmerged Go version 891c006d34/alpine/containers/cloud-config/main.go

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
This commit is contained in:
Justin Cormack 2017-03-09 14:32:13 +00:00
parent 1cfe28aaa4
commit befb0bcdec

View File

@ -37,6 +37,7 @@ type MobyImage struct {
Command []string
NetworkMode string `yaml:"network_mode"`
Pid string
Ipc string
}
const riddler = "mobylinux/riddler:7d4545d8b8ac2700971a83f12a3446a76db28c14@sha256:11b7310df6482fc38aa52b419c2ef1065d7b9207c633d47554e13aa99f6c0b72"
@ -77,6 +78,10 @@ func ConfigToRun(order int, path string, image *MobyImage) []string {
// TODO only "host" supported
args = append(args, "--pid="+image.Pid)
}
if image.Ipc != "" {
// TODO only "host" supported
args = append(args, "--ipc="+image.Pid)
}
for _, bind := range image.Binds {
args = append(args, "-v", bind)
}