Joplin/Jenkinsfile
Adam Outler 9c5c215be8
Some checks failed
Updates/Joplin/pipeline/head There was a failure building this commit
Update Jenkinsfile
2025-03-30 20:21:42 +00:00

18 lines
400 B
Groovy

pipeline {
agent { label 'Wrangler1' }
environment {
PROJECT_NAME = 'joplin'
}
stages {
stage('Pull Docker Images') {
steps {
sh 'docker compose pull'
}
}
stage('Deploy') {
steps {
sh 'PROJECT_NAME=${PROJECT_NAME} docker compose up -d --force-recreate'
}
}
}
}