随笔分类 -  DevOps

摘要:1.问题 jenkins打包镜像报错 2. 处理方法 修改Dockerfile 名称为dockerfile 参考链接: https://www.cnblogs.com/rohens-hbg/p/14212145.html 阅读全文
posted @ 2022-03-01 12:15 代码诠释的世界 阅读(1098) 评论(0) 推荐(0)
摘要:1. 官网 https://docs.docker.com/engine/reference/commandline/system_prune/ 2. 方法 docker system prune 命令可以用于清理磁盘,删除关闭的容器、无用的数据卷和网络,以及dangling镜像(即无tag的镜像) 阅读全文
posted @ 2022-03-01 12:10 代码诠释的世界 阅读(750) 评论(0) 推荐(0)
摘要:一. 创建多分支流水线 二. sonar创建项目(非必须) 三. sonar生成token 四. jenkins配置sonar服务器 首先添加sonarqube的jenkins全局token凭据 打开凭据管理 添加用户密码和token类型凭据 安装sonarqube插件 打开系统配置 打开syste 阅读全文
posted @ 2022-02-28 20:59 代码诠释的世界 阅读(402) 评论(0) 推荐(0)
摘要:参考链接: https://blog.csdn.net/weixin_46902396/article/details/118337250 阅读全文
posted @ 2022-02-28 20:52 代码诠释的世界 阅读(57) 评论(0) 推荐(0)
摘要:1. hub地址 https://hub.docker.com/r/twang2218/gitlab-ce-zh 阅读全文
posted @ 2022-02-28 20:49 代码诠释的世界 阅读(155) 评论(0) 推荐(0)
摘要:1. 官网 https://www.php.net/ 2. 安装 https://www.php.net/manual/zh/ 参考链接: https://blog.csdn.net/cunjie3951/article/details/106900049/ 阅读全文
posted @ 2022-02-28 20:44 代码诠释的世界 阅读(135) 评论(0) 推荐(0)
摘要:1. 使用字符串参数构建 2. 配置pipeline stage('Checkout') { steps { script{ branch = branch if (env.gitlabSourceBranch != null) { checkout changelog: true, poll: t 阅读全文
posted @ 2022-02-28 20:35 代码诠释的世界 阅读(811) 评论(0) 推荐(0)
摘要:1. 官网 https://doc.goldfingerholdings.com/synapsert/latest/zh_cn 2. 使用 3. 其他 zephyrxray 参考链接: https://www.cnblogs.com/huxinping8800/p/14435785.html?ivk 阅读全文
posted @ 2022-02-28 11:39 代码诠释的世界 阅读(1002) 评论(0) 推荐(0)
摘要:1. 官网 https://docs.microsoft.com/en-us/windows/wsl/about 2. wsl1和wsl2对比 https://docs.microsoft.com/en-us/windows/wsl/compare-versions#comparing-featur 阅读全文
posted @ 2022-02-25 15:54 代码诠释的世界 阅读(80) 评论(0) 推荐(0)
摘要:1. 官网 https://readthedocs.org/ https://www.sphinx-doc.org/en/master/ 2. 参考链接 https://zhuanlan.zhihu.com/p/264647009 阅读全文
posted @ 2022-02-25 15:51 代码诠释的世界 阅读(95) 评论(0) 推荐(0)
摘要:1.jenkins日志 2. dockerfile FROM openjdk:8u171-jre-alpine ENV JAR_NAME=spring-boot-01-helloworld-quick-0.0.1-SNAPSHOT.jar COPY ./target/$JAR_NAME /apps/ 阅读全文
posted @ 2022-02-25 15:43 代码诠释的世界 阅读(705) 评论(0) 推荐(0)
摘要:1. 链接 https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow 阅读全文
posted @ 2022-02-25 15:36 代码诠释的世界 阅读(46) 评论(0) 推荐(0)
摘要:1. 官网 https://www.atlassian.com/software/jira/guides https://docs.atlassian.com/software/jira/docs/api/ 2. 安装mysql https://www.cnblogs.com/fireblackma 阅读全文
posted @ 2022-02-24 19:58 代码诠释的世界 阅读(3965) 评论(0) 推荐(0)
摘要:1. 官网 https://www.jenkins.io/doc/ https://robotframework.org/ https://docs.qameta.io/allure/#_jenkins 2. 安装allure https://www.cnblogs.com/fireblackman 阅读全文
posted @ 2022-02-23 20:28 代码诠释的世界 阅读(346) 评论(0) 推荐(0)
摘要:1. 问题现象 appledeMacBook-Pro:~ apple$ allure -version ERROR: JAVA_HOME is set to an invalid directory: /usr/local/opt/openjdk Please set the JAVA_HOME v 阅读全文
posted @ 2022-02-23 14:58 代码诠释的世界 阅读(683) 评论(0) 推荐(0)
摘要:1. 官网链接 http://docs.docker.com/compose/install/ 2.项目链接 https://github.com/docker/compose/releases 3. 下载二进制安装 Linux 上我们可以从 Github 上下载它的二进制包来使用,最新发行的版本地 阅读全文
posted @ 2022-02-22 20:06 代码诠释的世界 阅读(600) 评论(0) 推荐(0)
摘要:1. 官网链接 https://goharbor.io/docs/2.4.0/ 2. 项目地址 https://github.com/goharbor/harbor/releases 3. 安装 wget https://storage.googleapis.com/harbor-releases/ 阅读全文
posted @ 2022-02-22 19:47 代码诠释的世界 阅读(522) 评论(0) 推荐(0)
摘要:1. 修改hostname sudo vim /etc/hostname sudo vim /etc/hosts 2. 让其立即生效 sudo hostname -F /etc/hostname 阅读全文
posted @ 2022-02-21 15:40 代码诠释的世界 阅读(1863) 评论(0) 推荐(0)
摘要:1. 项目地址 https://github.com/mjpclab/go-http-file-server/tree/v1.8.4 https://gitee.com/mjpclab/go-http-file-server/ 2. 相关使用介绍 https://www.oschina.net/ne 阅读全文
posted @ 2022-02-18 16:16 代码诠释的世界 阅读(1176) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-02-18 16:10 代码诠释的世界 阅读(490) 评论(0) 推荐(0)