How to install a plugin in Jenkins manually

后端 未结 12 647
你的背包
你的背包 2020-11-29 17:06

Installing a plugin from the Update center results in:

Checking internet connectivity Failed to connect to http://www.google.com/. Perhaps you need

12条回答
  •  囚心锁ツ
    2020-11-29 17:58

    If you use Docker, you should read this file: https://github.com/cloudbees/jenkins-ci.org-docker/blob/master/plugins.sh

    Example of a parent Dockerfile:

    FROM jenkins
    COPY plugins.txt /plugins.txt
    RUN /usr/local/bin/plugins.sh /plugins.txt
    

    plugins.txt

    :
    :
    

提交回复
热议问题