-
Notifications
You must be signed in to change notification settings - Fork 20
[BE] Jenkins
xrabcde edited this page Aug 1, 2021
·
1 revision
ssh -i [KEY-zzimkkong.pem 경로] [email protected]
http://15.164.196.248:8080
docker run -d -p 8080:8080 -v /jenkins:/var/jenkins_home --name jenkins -u root jenkins/jenkins:jdk11
- jenkins server에서 Docker로 Jenkins를 구동 중임
- 호스트의 포트 8080이 docker container의 포트 8080과 연결 되어 있음
- 호스트의 /jenkins 폴더가 docker container의 폴더 /var/jenkins_home 폴더에 마운트 되어 있음 (동기화)
- container name: jenkins
- docker image: jenkins/jenkins with jdk 11
docker logs jenkins
docker logs [dockerId] # container ID도 가능
docker exec -it jenkins /bin/bash
- Jenkins 브라우저 접속 시 재시작이 필요한 상황에 이를 수동으로 해주는 URL
http://15.164.196.248:8080/safeRestart
-
Main Reference https://pjh3749.tistory.com/261
-
사용 환경 구축 https://junghwanta.tistory.com/23
-
Jenkins를 활용한 빌드/배포 https://junghwanta.tistory.com/44
-
Docker/Jenkins https://junghwanta.tistory.com/45?category=857298
-
Jenkins에서 Spring Boot 배포 해보기 https://www.grepiu.com/post/43
-
Jenkins + Slack Notification https://joyfulhome.tistory.com/146
-
Jenkins + Github Webhook https://nearsoft.com/blog/how-to-get-jenkins-to-execute-builds-automatically-with-github/