목록docker (37)
habity
참고 사이트 https://www.jenkins.io/blog/2017/02/07/declarative-maven-project/ Declarative Pipeline for Maven Projects The next thing we’ll add in this Pipeline is a tools section to let us use Maven. The tools section is one of several sections we can add under pipeline, which affect the configuration of the rest of the Pipeline. (We’ll look at the others, including a www.jenkins.io script pipeline {..
script1 pipeline { agent any stages { stage('Compile') { steps { echo "Compiled successfully!"; } } stage('JUnit') { steps { echo "JUnit passed successfully!"; } } stage('Code Analysis') { steps { echo "Code Analysis completed successfully!"; } } stage('Deploy') { steps { echo "Deployed successfully!"; } } } } script2 pipeline { agent any stages { stage('Compile') { steps { echo "Compiled succes..
실습 준비 시작하기 전 Docker Hub에 이미지를 올릴 서버는 'Docker login'을 통해 로그인 하자. ansible-server Jenkins 결과 확인
