rimajon-ktor/Jenkinsfile

23 lines
445 B
Plaintext
Raw Permalink Normal View History

2024-05-06 18:44:21 +00:00
pipeline {
2024-05-06 18:57:49 +00:00
agent any
2024-05-06 18:44:21 +00:00
stages {
stage('Build FAT JAR') {
2024-05-06 18:57:49 +00:00
agent {
docker {
image "gradle:7.6.4-jdk11"
reuseNode true
}
}
2024-05-06 18:44:21 +00:00
steps {
sh 'gradle shadowJar'
}
}
stage("Deploy jar") {
steps {
2024-05-06 21:04:50 +00:00
sh "docker compose up --build -d"
2024-05-06 18:44:21 +00:00
}
}
}
}