Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 1.53 KB

README.md

File metadata and controls

43 lines (29 loc) · 1.53 KB

Jenkins playground

Run the container with the following command:

docker run -p 8080:8080 -v ~/path/on/your/system:/seed/workspace xebia/jenkins-playground:2.7.3-1

This will start Jenkins at port 8080 at your local machine with a volume mount from your local machine which will be your Jenkins playground.

Now two things can happen:

  • The folder you mounted contains files, in which case Jenkins will assume you want to continue where you left off last time, and will rebuild your playground infrastructure how you left it.
  • The folder you mounted is empty, in which case Jenkins will assume this is the first time you ran this container, and will add some example code to get you going.

Everytime a file changes in that folder, the seedjob will automatically trigger, happy coding :)

Additional plugins

Are the standard set of plugins not sufficient? Add some more with the ADDITIONAL_PLUGINS environment variable.

docker run -p 8080:8080 -v ~/ws:/seed/workspace -e ADDITIONAL_PLUGINS="chucknorris" xebia/jenkins-playground:2.7.3-1

You can add multiple plugins by separating the plugin ID's with a space.

Conventions

Please keep to the following conventions:

  • Jobs or scripts generating multiple jobs should be placed in the root of this directory.
  • Commonly used functions/closures/parts of your job definition should be placed in the helpers folder.

Pre-installed plugins

  • ansicolor
  • greenballs
  • groovy-postbuild
  • rebuild
  • postbuildscript
  • job-dsl
  • workflow-aggregator
  • ws-cleanup