Add {'Filename'}
Archivo Jenkins pipeline
This commit is contained in:
commit
8d9b3302da
21
Jenkinsfile
vendored
Normal file
21
Jenkinsfile
vendored
Normal 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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user