Joplin/Jenkinsfile
Adam Outler 44a353b747
All checks were successful
Updates/Joplin/pipeline/head This commit looks good
Update Jenkinsfile
2025-03-30 21:21:47 +00:00

18 lines
408 B
Groovy

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