docker-ci-tool-stack Demo
2.3K
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
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.
Content type
Image
Digest
Size
434.4 MB
Last updated
almost 9 years ago
docker pull mbirkner/docker-ci-tool-stack-jenkins