Skip to content

Commit af021b1

Browse files
authored
dsfdsf
sdfsdf
1 parent c8771d1 commit af021b1

1 file changed

Lines changed: 4 additions & 27 deletions

File tree

Jenkinsfile

Lines changed: 4 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,13 @@
11
pipeline {
2-
node 'deployment_node' {
3-
2+
agent { docker { image 'maven:3.3.3' } }
43
stages {
5-
stage('Build') {
4+
stage('checkout & build') {
65
steps {
7-
6+
checkout scm
87
}
9-
}
10-
stage('build docker image') {
11-
steps {
12-
13-
}
14-
}
15-
16-
stage('push docker image registory') {
178
steps {
18-
9+
sh 'mvn package'
1910
}
2011
}
21-
22-
stage('application deployment by docker') {
23-
steps {
24-
25-
}
26-
}
27-
28-
stage('Deploy') {
29-
steps {
30-
echo 'Deploying....'
31-
}
32-
}
33-
34-
}
3512
}
3613
}

0 commit comments

Comments
 (0)