Joplin/Jenkinsfile
Adam Outler fc3d0361cc
All checks were successful
Updates/Joplin/pipeline/head This commit looks good
Update Jenkinsfile
2025-03-30 20:25:05 +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'
}
}
}
}