Joplin/Jenkinsfile
Adam Outler 8a7d9281cd
Some checks failed
Updates/Joplin/pipeline/head There was a failure building this commit
Update Jenkinsfile
2025-03-30 21:24:47 +00:00

20 lines
450 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
"""
}
}
}
}