🎨 Docker 容器限制 CPU 和内存

This commit is contained in:
Liang Ding 2021-03-05 20:00:09 +08:00
parent 7f9f726f71
commit 9b8c3eb888
No known key found for this signature in database
GPG Key ID: 136F30F901A2231D
1 changed files with 2 additions and 1 deletions

View File

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