Skip to content
KitploitKITPLOIT
도구블로그
제출
도구블로그
제출

해킹, 침투 테스트 및 사이버 보안 도구를 당신의 보안 무기고에!

Kitploit은 해킹, 사이버 보안 및 침투 테스트 도구 디렉토리입니다. 최신 프로젝트 업데이트를 발견하여 취약점을 찾고, 시스템을 분석하고, 테스트를 자동화하고, 보안을 강화하세요.

··피드·문의·개인정보·© 2026 Kitploit

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
jenkinsci__docker-commons-plugin_CVE-2022-20617_1-17 | Kitploit
도구/GitHubGitHub/shoucheng3/jenkinsci__docker-commons-plugin_cve-2022-20617_1-17
Authentication & AuthorizationCloud Infrastructure SecurityContainer SecurityConfiguration AuditingDevSecOpsAPI Security
GitHubshoucheng3/jenkinsci__docker-commons-plugin_cve-2022-20617_1-17

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

인기

모두 보기 →

커뮤니티에서 가장 많이 사용되는 도구를 찾아보세요.

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유
저장소 보기
1년 전아직 검토되지 않음

Jenkins용 Docker Commons API 플러그인

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

다양한 Docker 관련 플러그인에 공통으로 사용되는 기능을 제공하는 API 플러그인입니다.

요약

  • Docker 이미지 및 컨테이너 지문(fingerprint) 관리를 위한 API
  • Docker 레지스트리의 자격 증명 및 위치
  • Docker 데몬(일명 Docker Remote API)의 자격 증명 및 위치
  • Docker CLI 클라이언트용 ToolInstallation
  • 작업에서 Docker 이미지 관계를 가져오는 DockerImageExtractor 확장 지점
  • 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 및 이전 버전은 릴리스 노트 아카이브를 참조하세요
도구 다운로드