This commit is contained in:
Liang Ding 2014-12-17 17:20:04 +08:00
parent a7890c021d
commit 9d76269667
1 changed files with 2 additions and 2 deletions

View File

@ -104,8 +104,8 @@ func RunHandler(w http.ResponseWriter, r *http.Request) {
Gid: 1001, // gourp: wide_runner
}
cmd.SysProcAttr.UidMappings = []syscall.SysProcIDMap{{ContainerID: 1001, HostID: 1000, Size: 1}}
cmd.SysProcAttr.GidMappings = []syscall.SysProcIDMap{{ContainerID: 1001, HostID: 1000, Size: 1}}
cmd.SysProcAttr.UidMappings = []syscall.SysProcIDMap{{ContainerID: 1001, HostID: 1001, Size: 1}}
cmd.SysProcAttr.GidMappings = []syscall.SysProcIDMap{{ContainerID: 1001, HostID: 1001, Size: 1}}
stdout, err := cmd.StdoutPipe()
if nil != err {