Skip to content

Commit

Permalink
Update Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
tanji authored Mar 4, 2024
1 parent e90d789 commit 2dc9332
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ pipeline {
def Image = docker.build('signal18/replication-manager:2.3', '-f docker/Dockerfile .')
Image.push()
Image.push('latest')
Image.push(env.TAG_NAME)
}
}
}
Expand All @@ -25,6 +26,7 @@ pipeline {
docker.withRegistry('https://index.docker.io/v1/', 'docker-hub') {
def Image = docker.build('signal18/replication-manager:2.3-pro', '-f docker/Dockerfile.pro .')
Image.push()
Image.push(env.TAG_NAME+"-pro")
}
}
}
Expand All @@ -36,6 +38,7 @@ pipeline {
def Image = docker.build('signal18/replication-manager:2.3-dev', '-f docker/Dockerfile.dev .')
Image.push()
Image.push('dev')
Image.push(env.TAG_NAME+"-dev")
}
}
}
Expand Down

0 comments on commit 2dc9332

Please sign in to comment.