From 7044c970a330aeef8ba854bce7ea421e27828f86 Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Thu, 18 Dec 2014 11:21:24 +0800 Subject: [PATCH] . --- output/outputs.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/output/outputs.go b/output/outputs.go index 08e9643..e9e4ead 100644 --- a/output/outputs.go +++ b/output/outputs.go @@ -110,12 +110,12 @@ func RunHandler(w http.ResponseWriter, r *http.Request) { cmd.SysProcAttr = &syscall.SysProcAttr{} cmd.SysProcAttr.Cloneflags = syscall.CLONE_NEWUSER | syscall.CLONE_NEWNS | syscall.CLONE_NEWUTS | syscall.CLONE_NEWPID | syscall.CLONE_NEWIPC | syscall.CLONE_NEWNET cmd.SysProcAttr.Credential = &syscall.Credential{ - Uid: 1000, - Gid: 1000, + Uid: 0, + Gid: 0, } - cmd.SysProcAttr.UidMappings = []syscall.SysProcIDMap{{ContainerID: 1000, HostID: 1000, Size: 1}} - cmd.SysProcAttr.GidMappings = []syscall.SysProcIDMap{{ContainerID: 1000, HostID: 1000, Size: 1}} + cmd.SysProcAttr.UidMappings = []syscall.SysProcIDMap{{ContainerID: 0, HostID: 1000, Size: 1}} + cmd.SysProcAttr.GidMappings = []syscall.SysProcIDMap{{ContainerID: 0, HostID: 1000, Size: 1}} stdout, err := cmd.StdoutPipe() if nil != err {