LoginSignup
1
1

More than 5 years have passed since last update.

CentOS6でjenkinsを動作させるためのDockerfile

Posted at
FROM centos:centos6

MAINTAINER shotsky

# Install Packages
RUN yum update -y
RUN yum install wget java-1.7.0-openjdk -y
RUN wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/red
hat/jenkins.repo
RUN rpm --import http://pkg.jenkins-ci.org/redhat/jenkins-ci.org.key
RUN yum install jenkins -y

EXPOSE 8080
CMD ["java", "-jar", "/usr/lib/jenkins/jenkins.war"]

以下のコマンドでイメージ作成

docker build -t shotsky/jenkins [Dockerfileのあるパス]

以下のコマンドで実行

docker run -d -p 8080:8080 shotsky/jenkins
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1