Sign inSign up

mbirkner/docker-ci-tool-stack-jenkins

By mbirkner

Updated almost 9 years ago

docker-ci-tool-stack Demo

Image
1

2.3K

mbirkner/docker-ci-tool-stack-jenkins repository overview

Jenkins Docker Container

Usage:

$ docker build -t jenkins .
$ docker run -d -p=8080:8080 jenkins

Once Jenkins is up and running go to http://192.168.59.103:8080

Update Plugins

Install and update all plugins via the Jenkins Plugin Manager.

After that use the Script Console to output all plugins including the version in the correct format for the plugin.txt.

def plugins = jenkins.model.Jenkins.instance.pluginManager.plugins
plugins.sort{it}
plugins.each {
  println it.shortName + ':' + it.getVersion()
}

More example scripts can be found in the groovy folder.

Tag summary

Content type

Image

Digest

Size

434.4 MB

Last updated

almost 9 years ago

docker pull mbirkner/docker-ci-tool-stack-jenkins