Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
jenkinsci__docker-commons-plugin_CVE-2022-20617_1-17 — Jenkins 插件,为 Docker 相关的 CI/CD 插件提供共享 API,用于 Docker 凭据管理、注册表认证、守护进程配置以及镜像指纹识别。 | Kitploit
工具/GitHubGitHub/shoucheng3/jenkinsci__docker-commons-plugin_cve-2022-20617_1-17
身份验证与授权云基础设施安全容器安全配置审计DevSecOpsAPI 安全
GitHubshoucheng3/jenkinsci__docker-commons-plugin_cve-2022-20617_1-17

jenkinsci__docker-commons-plugin_CVE-2022-20617_1-17

Jenkins 插件,为 Docker 相关的 CI/CD 插件提供共享 API,用于 Docker 凭据管理、注册表认证、守护进程配置以及镜像指纹识别。

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享
查看仓库
61年前尚未审核

Jenkins 的 Docker Commons API 插件

Join the chat at https://gitter.im/jenkinsci/docker Jenkins Plugin GitHub release Jenkins Plugin Installs

API 插件,为各种与 Docker 相关的插件提供通用共享功能。

概要

  • 用于管理 Docker 镜像和容器指纹的 API
  • Docker Registry 的凭据和位置
  • Docker Daemon(即 Docker Remote API)的凭据和位置
  • 用于 Docker CLI 客户端的 ToolInstallation
  • DockerImageExtractor 扩展点,用于从任务中获取 Docker 镜像关系
  • 在 Docker 构建中引用相关镜像指纹的简单 UI
  • 等等。

使用场景

凭据和位置

这允许用户配置一组端点/凭据,并在所有与 Docker 相关的插件中使用它,从而使配置更加 DRY。

典型用法请参阅 Docker Pipeline Plugin。

声明式流水线示例

以下示例演示如何在声明式流水线中绑定 Docker 主机/守护进程凭据:

root@kitploit:~
pipeline {
  agent any
  tools {
    // a bit ugly because there is no `@Symbol` annotation for the DockerTool
    // see the discussion about this in PR 77 and PR 52: 
    // https://github.com/jenkinsci/docker-commons-plugin/pull/77#discussion_r280910822
    // https://github.com/jenkinsci/docker-commons-plugin/pull/52
    'org.jenkinsci.plugins.docker.commons.tools.DockerTool' '18.09'
  }
  environment {
    DOCKER_CERT_PATH = credentials('id-for-a-docker-cred')
  }
  stages {
    stage('foo') {
      steps {
        sh "docker version" // DOCKER_CERT_PATH is automatically picked up by the Docker client
      }
    }
  }
}

许可证

MIT 许可证

更新日志

  • 查看 GitHub Releases 了解最新版本
  • 查看 发布说明存档 了解 1.15 及更早版本
下载工具