This commit is contained in:
Liang Ding 2020-01-18 17:16:12 +08:00
parent 786a0f5c4a
commit c84ead6140
No known key found for this signature in database
GPG Key ID: 136F30F901A2231D
1 changed files with 3 additions and 2 deletions

View File

@ -68,8 +68,9 @@ func RunHandler(w http.ResponseWriter, r *http.Request, channel map[string]*util
var cmd *exec.Cmd
if conf.Docker {
fileName := filepath.Base(filePath)
cmdStr := "docker run --rm --cpus 0.5 --name " + rid + " -v " + filePath + ":/" + fileName + " " + conf.DockerImageGo + " /" + fileName
cmd = exec.Command("sh", "-c", cmdStr)
//cmdStr := "docker run --rm --cpus 0.5 --name " + rid + " -v " + filePath + ":/" + fileName + " " + conf.DockerImageGo + " /" + fileName
//cmd = exec.Command("sh", "-c", cmdStr)
cmd = exec.Command("docker", "run", "--rm", "--cpus", "0.5", "--name", rid, "-v", filePath+":/"+fileName, conf.DockerImageGo, "/"+fileName)
} else {
cmd = exec.Command(filePath)
curDir := filepath.Dir(filePath)