This commit is contained in:
Vicente Falco 2018-01-08 11:02:40 +01:00
parent 0843b824f2
commit 713ebc8ffb
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -43,7 +43,7 @@ node
stage ("Stopping/Removing Docker")
{
steps{
step{
env.TAG = env.BUILD_NUMBER - 1;
sh "docker-compose down --rmi 'all'"
}
@ -51,7 +51,7 @@ node
stage ("Generar dockers")
{
steps{
step{
env.TAG = env.BUILD_NUMBER + 1;
sh "docker-compose up -d --build"
}