Skip to content

Instantly share code, notes, and snippets.

@nelsonyaccuzzi
Created October 20, 2020 00:13
Show Gist options
  • Save nelsonyaccuzzi/676fcd521fdc9c897b14519239508af0 to your computer and use it in GitHub Desktop.
Save nelsonyaccuzzi/676fcd521fdc9c897b14519239508af0 to your computer and use it in GitHub Desktop.
pipeline {
agent { label 'docker'}
stages {
stage('Build') {
steps {
container('docker') {
script {
sh 'docker ps'
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment