Update Jenkinsfile
Some checks failed
Updates/Joplin/pipeline/head There was a failure building this commit

This commit is contained in:
Adam Outler 2025-03-30 20:21:42 +00:00
parent f8998e3723
commit 9c5c215be8

4
Jenkinsfile vendored
View File

@ -6,12 +6,12 @@ pipeline {
stages {
stage('Pull Docker Images') {
steps {
sh 'docker-compose -p $PROJECT_NAME pull'
sh 'docker compose pull'
}
}
stage('Deploy') {
steps {
sh 'docker-compose -p $PROJECT_NAME up -d --force-recreate'
sh 'PROJECT_NAME=${PROJECT_NAME} docker compose up -d --force-recreate'
}
}
}