Add {'Filename'}

Archivo Jenkins pipeline
This commit is contained in:
Deibis Moreno 2024-06-17 22:49:02 +00:00
commit 8d9b3302da

21
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,21 @@
pipeline{
agent any
stages{
stage ('Build'){
steps{
echo "Etapa BUILD no disponible"
}
}
stage ('Test'){
steps{
echo "Etapa TEST no disponible"
}
}
stage ('Deploy'){
steps{
sh "docker-compose down -v"
sh "docker-compose up -d ---build"
}
}
}
}