02 2022 档案

摘要:【Jenkins】windows系统环境下启动Jenkins 如何在Windows环境下启动Jenkins 管理员运行Powershell/Cmd 运行命令 net start jenkins 阅读全文
posted @ 2022-02-24 15:05 SHENHUANJIE 阅读(894) 评论(0) 推荐(0) 编辑
摘要:保存为bat后缀文件,运行即可 @echo off taskkill /f /im explorer.exe CD /d %userprofile%\AppData\Local DEL IconCache.db /a start explorer.exe echo 执行完成 阅读全文
posted @ 2022-02-16 10:37 SHENHUANJIE 阅读(61) 评论(0) 推荐(0) 编辑
摘要:/** * 基础工具类 */ export default { /** * 删除对象无效值(空值, null, undefined……) * @param {*} obj * @returns */ filterNonNull(obj) { if (obj) { return Object.from 阅读全文
posted @ 2022-02-15 15:59 SHENHUANJIE 阅读(197) 评论(0) 推荐(0) 编辑
摘要:要验证这是否为正确的恢复密钥,请将以下标识符的开头与电脑上显示的标识符值进行比较。 标识符: 1B7F23C2-4AAA-461A-8C29-8BB0707D4173 如果以上标识符与电脑显示的标识符匹配,则使用以下密钥解锁你的驱动器。 恢复密钥: 293546-604956-059257-4715 阅读全文
posted @ 2022-02-13 21:12 SHENHUANJIE 阅读(2472) 评论(0) 推荐(0) 编辑
摘要:WordPress是一个非常著名的PHP编写的博客平台,发展到目前为止已经形成了一个庞大的网站平台系统。在WP上有规模庞大的插件和主题,可以帮助我们快速建立一个博客甚至网站,今天尝试在Linux上使用Docker来安装WordPress。 本着“容器只干一件事情”的原则,本文会将出现两个容器,一个W 阅读全文
posted @ 2022-02-13 11:24 SHENHUANJIE 阅读(299) 评论(0) 推荐(0) 编辑
摘要:<template> <el-container style="height: 630px"> <el-aside width="300px"> <el-tree :data="productTypes" :props="defaultProps" node-key="id" @node-conte 阅读全文
posted @ 2022-02-13 11:22 SHENHUANJIE 阅读(943) 评论(0) 推荐(0) 编辑
摘要:1、删除悬空的镜像 docker image prune -a -f 2、删除悬空的镜像 docker container prune -f 阅读全文
posted @ 2022-02-12 20:56 SHENHUANJIE 阅读(778) 评论(0) 推荐(0) 编辑