proxy-nginx/deploy-this/restart-docker.jenkinsfile

13 lines
301 B
Plaintext
Executable File

pipeline {
agent any
stages {
stage('Restart Swarm services') {
steps {
sh '''
# Restart wszystkich usług poza jenkinsem
docker service ls --format "{{.Name}}" | grep -v 'jenkins' | xargs -I {} docker service update --force {}
'''
}
}
}
}