Created
October 6, 2015 09:42
-
-
Save iocanel/2de1cf8e7a981bce7695 to your computer and use it in GitHub Desktop.
To Docker Workflow or Not?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # with docker workflow | |
| node('docker') { | |
| docker.image('maven').inside { | |
| git 'https://github.com/fabric8io/example-camel-cdi' | |
| sh 'mvn clean install' | |
| } | |
| } | |
| #without docker workflow | |
| node('maven') { | |
| git 'https://github.com/fabric8io/example-camel-cdi' | |
| sh 'mvn clean install' | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment