본문 바로가기
나중에 설치 다시할때 봐야징

Docker에 Jenkins 설치하기

by 박 현 황 2021. 8. 8.

Docker 설치하기

 

https://www.docker.com/

 

Empowering App Development for Developers | Docker

Learn how Docker helps developers bring their ideas to life by conquering the complexity of app development.

www.docker.com

위 사이트 접속 후 본인 OS에 맞는 것 다운로드 받으면 된다.

 

 

docker --version

명령어 입력 통해 다운받은 거 확인하기.

 

 

Docker 에 Jenkins 설치하기

 

아래의 명령어를 cmd창에 입력하여 다운받는다.

docker run -d -u root -p 8080:9090 --name=jenkins jenkins/jenkins

 

-d : 도커 컨테이너를 백그라운드로 부터 실행

-p 9090: 8080  :   내 컴퓨터의 9090 포트와 도커 컨테이너의 8080 포트를 연결시켜준다.

--name=jenkins : 도커 컨테이너 이름을 jenkins로 설정

 

 

<!-- 이런 뜻이라고 한다. -->

 

설치하고

http://localhost:9090 / 들어가면

 

 

이렇게 뜬다.

비밀번호는

 

docker logs jenkins

위의 명령어 입력 시 

이런식으로 중간에 뜨는 거 넣어주면 된다.

이게 비밀번호다,,,!

 

 

 

요거 원하는 대로 채워넣어주고 나면

 

 

설치 완료!

 

 

 

 

 

 

 

'나중에 설치 다시할때 봐야징' 카테고리의 다른 글

putty 접속하기  (0) 2021.09.09
Jenkins 랑 Gitlab 연동하기  (0) 2021.08.09
AWS 서버에서 NGINX 사용해서 REACT 배포하기  (0) 2021.08.06
Tomcat 설치하기  (0) 2021.07.13
Git 설치하기  (0) 2021.07.09