Skip to content

Commit 7db02cc

Browse files
committed
1319
1 parent a257b96 commit 7db02cc

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

Jenkinsfile

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,19 @@ pipeline {
66
}
77

88
stages {
9-
stage('0. 자동화 확인2') { steps { echo '스테이지 출발' } }
9+
stage('0. 자동화 확인1') { steps { echo '스테이지 출발' } }
1010

1111
stage('1. Build') {
1212
steps {
1313
echo 'Maven으로 빌드 시작'
1414
sh 'mvn clean package'
1515
}
1616
}
17-
}
17+
18+
stage('2. Check Docker') {
19+
steps {
20+
sh 'docker version'
21+
}
22+
}
23+
}
1824
}

0 commit comments

Comments
 (0)