From 06f218d7e9632dfaa6afe6e1c35170d397a6298d Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Thu, 18 Dec 2014 11:41:46 +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 f5417b9..08e9643 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: 1001, - Gid: 1001, + Uid: 1000, + Gid: 1000, } - cmd.SysProcAttr.UidMappings = []syscall.SysProcIDMap{{ContainerID: 1001, HostID: 1001, Size: 1}} - cmd.SysProcAttr.GidMappings = []syscall.SysProcIDMap{{ContainerID: 1001, HostID: 1001, Size: 1}} + cmd.SysProcAttr.UidMappings = []syscall.SysProcIDMap{{ContainerID: 1000, HostID: 1000, Size: 1}} + cmd.SysProcAttr.GidMappings = []syscall.SysProcIDMap{{ContainerID: 1000, HostID: 1000, Size: 1}} stdout, err := cmd.StdoutPipe() if nil != err {