ContOS7에 yum에서 jenkins를 넣는 Dockerfile [추기:privileged 없음]
■환경
Windows10 Pro 1709
Docker-toolbox 18.02.0-ce
VirtualBox 5.2.8
■이미지 작성
필요한 최소한의 것만 기재하고 있습니다.
Dockerfile
FROM centos:7.4.1708
RUN ln -sf /usr/share/zoneinfo/Japan /etc/localtime && \
yum -y install wget && \
wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat/jenkins.repo && \
rpm --import https://jenkins-ci.org/redhat/jenkins-ci.org.key && \
yum -y install jenkins java-1.8.0-openjdk initscripts && \
systemctl enable jenkins
CMD /sbin/init
빌드
$ build -t jenkins .
■ 컨테이너 시작
$ docker run -itd --privileged -p 8080:8080 --name my-jenkins jenkins
이 화면을 볼 때까지 멀었던 "Orz
■ 추기:2018.05.23 (privileged 없음판)
Dockerfile
FROM centos:7.4.1708
RUN ln -sf /usr/share/zoneinfo/Japan /etc/localtime && \
yum -y install wget && \
wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat/jenkins.repo && \
rpm --import https://jenkins-ci.org/redhat/jenkins-ci.org.key && \
yum -y install jenkins java-1.8.0-openjdk initscripts
CMD ["/usr/bin/java","-jar","/usr/lib/jenkins/jenkins.war"]
$ docker run -itd -p 8080:8080 --name my-jenkins jenkins
감사 기사 : 당신의 docker 기사는 이미 오래되었습니다!
Reference
이 문제에 관하여(ContOS7에 yum에서 jenkins를 넣는 Dockerfile [추기:privileged 없음]), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/Ikumi/items/ec8bff9c9931658c1f77텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)