Loading

上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: 在 Jenkins 中设置定时构建可以使用 Jenkins 的“构建触发器”功能。具体步骤如下: 进入 Jenkins 任务的配置页面。 找到“构建触发器”部分,勾选“构建周期性地触发构建”。 在“构建触发器”中输入定时构建的表达式,例如:每周一到周五晚上 8 点构建 H 20 * * 1-5 表达 阅读全文
posted @ 2023-03-17 17:10 ABEELAN 阅读(770) 评论(0) 推荐(0) 编辑
摘要: jenkins 最新版本适配的 theme 有哪些? 更新于 2023-03-17,以下回答来自 ChatGPT Jenkins 最新版本 (Jenkins 2.303 LTS) 目前支持以下几种官方适配的主题: Classic Jenkins Theme:Jenkins 的默认主题,也是最老的主题 阅读全文
posted @ 2023-03-17 17:02 ABEELAN 阅读(1557) 评论(0) 推荐(0) 编辑
摘要: 编写 Dockerfile FROM alpine EXPOSE 8899 RUN apk add --no-cache nodejs npm \ && npm install whistle -g \ && apk del npm \ && mkdir /whistle ENTRYPOINT [" 阅读全文
posted @ 2023-03-14 16:49 ABEELAN 阅读(417) 评论(0) 推荐(0) 编辑
摘要: Ubuntu 22.0 当我使用 apt 安装一些软件包时,总是弹出一个粉色窗口,询问是否重启服务? 原因是系统默认安装了 needrestart,在每个 apt 安装完成后都会检查是否有更新,如果有就建议重启。 不想重启就直接 ESC 掉。 参考:官网:Needrestart for Server 阅读全文
posted @ 2023-03-14 13:47 ABEELAN 阅读(7081) 评论(0) 推荐(0) 编辑
摘要: 登录 Ubuntu 服务器上使用 docker 命令报错: permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get "http://%2Fvar 阅读全文
posted @ 2023-03-14 13:08 ABEELAN 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 计算机网络概述 基本概念 起源:计算机网络是计算机技术与通信技术融合的产物。 定义:计算机网络是互连的、自治的计算机的集合。 ISP:因特网服务提供商(Internet Service Provider)。 协议 网络协议:网络通信实体之间在数据交换过程中需要遵循的规则或约定。 协议三要素: 语法: 阅读全文
posted @ 2023-03-14 00:06 ABEELAN 阅读(752) 评论(0) 推荐(0) 编辑
摘要: 下载对应系统的可执行文件 https://github.com/jesseduffield/lazydocker/releases/tag/v0.20.0 $ wget https://github.com/jesseduffield/lazydocker/releases/download/v0. 阅读全文
posted @ 2023-03-13 16:36 ABEELAN 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 在服务器上查看当前 docker 容器,会折行展示,看着很乱 网上没找到相关的美化命令行工具 办法一:less 命令 # -e:文件内容显示完毕后,按任意键退出 # -S:在单行显示较长的内容,而不换行显示 # -N:每一行行首显示行号 $ docker ps | less -SNe ... (EN 阅读全文
posted @ 2023-03-13 15:49 ABEELAN 阅读(556) 评论(0) 推荐(0) 编辑
摘要: 使用过程中遇到的报错信息记录... $ git add readme.md fatal: not a git repository (or any of the parent directories) # Git命令必须在Git仓库目录内执行(git init除外),在仓库目录外执行是没有意义的 f 阅读全文
posted @ 2023-03-10 15:21 ABEELAN 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 问题 使用命令行提交时,中文乱码。 $ git commit -m "selenium cookies api" [main 2cc063e] selenium cookies api 2 files changed, 448 insertions(+) create mode 100644 "16 阅读全文
posted @ 2023-03-10 15:18 ABEELAN 阅读(15) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 9 下一页