Jenkinsfile aktualisiert

This commit is contained in:
dresi 2025-11-05 13:12:13 +01:00
parent a9f0729cbe
commit 4f18dd72a3

3
Jenkinsfile vendored
View File

@ -10,7 +10,7 @@ pipeline {
- name: "dind"
command:
- "cat"
image: "docker:dind"
image: "docker:latest"
tty: true
volumeMounts:
- mountPath: "/home/jenkins/agent"
@ -26,7 +26,6 @@ pipeline {
stage('Build Docker image') {
steps {
container('dind') {
sh 'cat run.sh'
sh 'docker build -t andreas/rsyncd .'
sh 'docker images'
}