diff --git a/core/tools.js b/core/tools.js index 3c25a4b4..4f2498c2 100644 --- a/core/tools.js +++ b/core/tools.js @@ -1,6 +1,15 @@ //工具箱 const os = require("os"); +const childProcess = require('child_process'); + +module.exports.startProcess = (command, parList, ProcessConfigs, callback) => { + let process = + childProcess.spawn(command, parList, ProcessConfigs); + process.on('exit', (code) => { + callback('exit', code); + }); +} module.exports.getMineTime = () => { var date = new Date(); diff --git a/public/template/component/new_docker_image.html b/public/template/component/new_docker_image.html new file mode 100644 index 00000000..e05df5e3 --- /dev/null +++ b/public/template/component/new_docker_image.html @@ -0,0 +1,40 @@ +
+
+
+
计划任务项目表达式
+
+
+
+

创建新的 Docker 镜像

+ 您不需要具备 Docker 专业知识,最简单的方法是,您只需要填写一个名字即可。 +
其他选项请给有需求与具备相关知识的人员填写。 +
+

DockerFile 文件:

+ + +

+ 确认无误之后,单击新建镜像按钮,但是这需要一定时间的等待,创建完成后 MCSM 会通知您。 +

+ +
+
+ +
+
+
+
+ + + \ No newline at end of file