摘要: // GitLab的凭证 def git_auth="e3c9f3d5-6a52-4c10-86a3-80911a71bb24" // 项目GitLab仓库 def git_url="http://192.168.1.101:82/test-team/tensquare_parent.git" // 阅读全文
posted @ 2022-01-14 17:59 coding++ 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 根据容器名称查询容器ID并删除 # 第一种写法 docker stop `docker ps -a| grep test-project | awk '{print $1}' ` docker rm `docker ps -a| grep test-project | awk '{print $1} 阅读全文
posted @ 2022-01-14 17:12 coding++ 阅读(1133) 评论(0) 推荐(0) 编辑