JenkinsFile docker configuration

This commit is contained in:
RolandBakunts 2023-01-17 03:57:07 -08:00
parent 1972e253f3
commit cce3e176f5

2
Jenkinsfile vendored
View file

@ -21,6 +21,7 @@ pipeline {
// sh './gradlew build -x test'
// }
// }
stage('docker') {
steps {
script {
@ -37,6 +38,7 @@ pipeline {
steps {
script {
docker.withRegistry("https://registry.hub.docker.com", "webserver_login")
app.push("${env.BUILD_NUMBER}")
app.push("latest")
}
}