This commit is contained in:
parent
88f16e1057
commit
1a4feddf34
|
@ -24,6 +24,7 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/b3log/wide/conf"
|
||||||
"github.com/b3log/wide/session"
|
"github.com/b3log/wide/session"
|
||||||
"github.com/b3log/wide/util"
|
"github.com/b3log/wide/util"
|
||||||
)
|
)
|
||||||
|
@ -58,10 +59,16 @@ func RunHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
}
|
}
|
||||||
|
|
||||||
filePath := args["executable"].(string)
|
filePath := args["executable"].(string)
|
||||||
curDir := filepath.Dir(filePath)
|
|
||||||
|
|
||||||
cmd := exec.Command(filePath)
|
var cmd *exec.Cmd
|
||||||
cmd.Dir = curDir
|
if conf.Docker {
|
||||||
|
fileName := filepath.Base(filePath)
|
||||||
|
cmd = exec.Command("docker", "run", "--rm", "-v", filePath+":/"+fileName, "busybox", "timeout", "10", "/"+fileName)
|
||||||
|
} else {
|
||||||
|
cmd = exec.Command(filePath)
|
||||||
|
curDir := filepath.Dir(filePath)
|
||||||
|
cmd.Dir = curDir
|
||||||
|
}
|
||||||
|
|
||||||
stdout, err := cmd.StdoutPipe()
|
stdout, err := cmd.StdoutPipe()
|
||||||
if nil != err {
|
if nil != err {
|
||||||
|
|
Loading…
Reference in New Issue