docker(37)
-
pipeline을 이용한 app 배포
참고 사이트 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 {..
2023.10.19 -
pipe-line 연습문제
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..
2023.10.19 -
pipeline-view
필요 plugin 설정
2023.10.19 -
Docker hub를 이용한 container 생성
실습 준비 시작하기 전 Docker Hub에 이미지를 올릴 서버는 'Docker login'을 통해 로그인 하자. ansible-server Jenkins 결과 확인
2023.10.18 -
ansible 내 tomcat SCM
실습 트러블 슈팅
2023.10.18 -
Ansible-server에 tomcat 생성
tomcat 이미지 생성 jenkins를 이용해서 ansible-server 내 tomcat 생성 및 접속 아래 명령어를 통해 tomcat에 접속하자 docker exec -it f7 /bin/bash
2023.10.17