From 11987392b6116b36b36b746fb33ff6486bb31600 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E8=A1=8D=E5=BF=97523370910113?= Date: Sun, 15 Sep 2024 22:47:00 +0800 Subject: [PATCH] Update doc: conf.toml detail --- doc%3A-conf.toml-detail.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/doc%3A-conf.toml-detail.md b/doc%3A-conf.toml-detail.md index a9dfa25..9c7faa8 100644 --- a/doc%3A-conf.toml-detail.md +++ b/doc%3A-conf.toml-detail.md @@ -29,10 +29,13 @@ name = "" # stage name here name = "sandbox" [stages.executor.with.default] args = [] # giving args here -env = ["PATH=/usr/bin:/bin:/usr/local/bin"] +env = ["PATH=/usr/bin:/bin:/usr/local/bin"] # provide env, usually set it as this example + +# cpu, memory and proc limit cpuLimit = 10_000_000_000 memoryLimit = 104_857_600 procLimit = 50 + copyInCwd = true copyOut = ["stdout", "stderr"] [stages.executor.with.default.copyIn.healthcheck]