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
प्रमाणीकरण और प्राधिकरणक्लाउड इन्फ्रास्ट्रक्चर सुरक्षाकंटेनर सुरक्षाकॉन्फ़िगरेशन ऑडिटिंगDevSecOpsAPI सुरक्षा
GitHubshoucheng3/jenkinsci__docker-commons-plugin_cve-2022-20617_1-17

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

सबसे लोकप्रिय

सभी देखें →

हमारे समुदाय द्वारा सबसे अधिक उपयोग किए जाने वाले उपकरण खोजें।

सभी उपकरण खोजें

हमारे उपकरणों का संग्रह ब्राउज़ करें

सभी उपकरण देखें →
साझा करें
रिपॉजिटरी देखें
1 साल पहलेअभी तक समीक्षित नहीं

Jenkins के लिए Docker Commons API Plugin

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
  • जॉब्स से Docker छवि संबंध प्राप्त करने के लिए DockerImageExtractor एक्सटेंशन पॉइंट
  • Docker बिल्ड्स में संबंधित छवि फ़िंगरप्रिंट को संदर्भित करने वाला सरल UI
  • आदि।

उपयोग-मामले

क्रेडेंशियल और स्थान

यह उपयोगकर्ताओं को endpoint/क्रेडेंशियल का एक सेट कॉन्फ़िगर करने और उसे सभी Docker संबंधित प्लगइन्स में उपयोग करने की अनुमति देता है, जिससे कॉन्फ़िगरेशन अधिक DRY रहता है।

सामान्य उपयोग के लिए Docker Pipeline Plugin देखें।

Declarative pipeline उदाहरण

Declarative pipeline में Docker host/daemon क्रेडेंशियल बाँधने का एक उदाहरण:

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 License

Changelog

  • हाल के संस्करणों के लिए GitHub Releases देखें
  • संस्करण 1.15 और पुराने के लिए रिलीज़ नोट्स संग्रह देखें
टूल डाउनलोड करें