-
Install Jenkins on your computer with docker
You can follow the most updated instructions on Jenkins Github Page.
Keep in mind that you need to run a container with a volume in order to have a persistent plugins directory.
For example, you can use the following commanddocker run -p 8080:8080 -p 50000:50000 --restart=on-failure -v jenkins_home:/var/jenkins_home jenkins/jenkins:lts-jdk11
-
Download plugins.zip file from blueflame-team google drive and copy it to your volume inside jenkins-home directory /var/jenkins_home.
-
Unzip the in your Jenkins container by running the command inside the container
unzip /var/jenkins_home/plugins.zip -d /var/jenkins_home/plugins
-
Restart Jenkins.
-
Now you are able to see all the plugins!
-
Go to < Jenkins Url > → Manage Jenkins → Manage plugins → update/add the plugins.
-
Restart Jenkins and check everything works fine.