set agent label to docker in Jenkinsfiles

This commit is contained in:
2019-02-09 23:04:52 -05:00
parent 83f596e6ce
commit 1c0ddc81f4
5 changed files with 5 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
pipeline { pipeline {
agent any agent { label 'docker' }
parameters { parameters {
choice( choice(
name: 'IMAGE', name: 'IMAGE',

View File

@@ -1,5 +1,5 @@
pipeline { pipeline {
agent any agent { label 'docker' }
triggers { triggers {
cron('@daily') cron('@daily')
} }

View File

@@ -1,5 +1,5 @@
pipeline { pipeline {
agent any agent { label 'docker' }
triggers { triggers {
cron('@daily') cron('@daily')
} }

View File

@@ -1,5 +1,5 @@
pipeline { pipeline {
agent any agent { label 'docker' }
triggers { triggers {
cron('@daily') cron('@daily')
} }

View File

@@ -1,5 +1,5 @@
pipeline { pipeline {
agent any agent { label 'docker' }
triggers { triggers {
cron('@daily') cron('@daily')
} }