rsyncd-docker/Jenkinsfile
2025-11-05 16:36:06 +01:00

18 lines
317 B
Groovy

pipeline {
agent {
label 'docker'
}
stages {
stage('Build Docker image') {
steps {
sh 'docker version'
}
}
stage('Tag Docker image') {
steps {
sh 'docker images'
sh 'ls -la'
}
}
}
}