简体   繁体   English

从官方Dockerfile构建Jenkins Docker映像

[英]building jenkins docker image from official Dockerfile

I am trying to build a jenkins docker image from official jenkins git repo: https://github.com/jenkinsci/docker . 我正在尝试从官方的jenkins git repo构建一个jenkins docker镜像: https://github.com/jenkinsci/docker : https://github.com/jenkinsci/docker

But when I try to run the container of the image using docker run -it -dP jenkins , it exits immediately and when i check the docker logs, I get the following error: 但是当我尝试使用docker run -it -dP jenkins图像的容器时,它立即退出,并且当我检查docker run -it -dP jenkins日志时,出现以下错误:

: invalid option

I read that the error could be because the pid of tini is not 1. I looked at the documents and saw that if we do the following, it should solve the issue. 我读到错误可能是因为tini的pid不是1。我查看了文档,发现如果我们执行以下操作,它应该可以解决问题。 Passing the -s argument to Tini (tini -s -- ...) Setting the environment variable TINI_SUBREAPER (eg export TINI_SUBREAPER=). 将-s参数传递给Tini(tini -s-...)设置环境变量TINI_SUBREAPER(例如,导出TINI_SUBREAPER =)。

But it did not solve anything. 但这并没有解决任何问题。

The following is the exact copy of the Dockerfile being built with docker build -t jenkins . 以下是使用docker docker build -t jenkins .的Dockerfile的确切副本docker build -t jenkins . :

FROM openjdk:8-jdk

RUN apt-get update && apt-get install -y git curl && rm -rf /var/lib/apt/lists/*

ARG user=jenkins
ARG group=jenkins
ARG uid=1000
ARG gid=1000
ARG http_port=8080
ARG agent_port=50000

ENV JENKINS_HOME /var/jenkins_home
ENV JENKINS_SLAVE_AGENT_PORT ${agent_port}
ENV TINI_SUBREAPER=

# Jenkins is run with user `jenkins`, uid = 1000
# If you bind mount a volume from the host or a data container,
# ensure you use the same uid
RUN groupadd -g ${gid} ${group} \
    && useradd -d "$JENKINS_HOME" -u ${uid} -g ${gid} -m -s /bin/bash ${user}

# Jenkins home directory is a volume, so configuration and build history
# can be persisted and survive image upgrades
VOLUME /var/jenkins_home

# `/usr/share/jenkins/ref/` contains all reference configuration we want
# to set on a fresh new installation. Use it to bundle additional plugins
# or config file with your custom jenkins Docker image.
RUN mkdir -p /usr/share/jenkins/ref/init.groovy.d

ENV TINI_VERSION 0.14.0
ENV TINI_SHA 6c41ec7d33e857d4779f14d9c74924cab0c7973485d2972419a3b7c7620ff5fd

# Use tini as subreaper in Docker container to adopt zombie processes
RUN curl -fsSL https://github.com/krallin/tini/releases/download/v${TINI_VERSION}/tini-static-amd64 -o /bin/tini && chmod +x /bin/tini \
  && echo "$TINI_SHA  /bin/tini" | sha256sum -c -

COPY init.groovy /usr/share/jenkins/ref/init.groovy.d/tcp-slave-agent-port.groovy

# jenkins version being bundled in this docker image
ARG JENKINS_VERSION
ENV JENKINS_VERSION ${JENKINS_VERSION:-2.60.1}

# jenkins.war checksum, download will be validated using it
ARG JENKINS_SHA=34fde424dde0e050738f5ad1e316d54f741c237bd380bd663a07f96147bb1390

# Can be used to customize where jenkins.war get downloaded from
ARG JENKINS_URL=https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-war/${JENKINS_VERSION}/jenkins-war-${JENKINS_VERSION}.war

# could use ADD but this one does not check Last-Modified header neither does it allow to control checksum
# see https://github.com/docker/docker/issues/8331
RUN curl -fsSL ${JENKINS_URL} -k -o /usr/share/jenkins/jenkins.war \
  && echo "${JENKINS_SHA}  /usr/share/jenkins/jenkins.war" | sha256sum -c -

ENV JENKINS_UC https://updates.jenkins.io
RUN chown -R ${user} "$JENKINS_HOME" /usr/share/jenkins/ref


# for main web interface:
EXPOSE ${http_port}

# will be used by attached slave agents:
EXPOSE ${agent_port}

ENV COPY_REFERENCE_FILE_LOG $JENKINS_HOME/copy_reference_file.log

USER ${user}

COPY jenkins-support /usr/local/bin/jenkins-support
COPY jenkins.sh /usr/local/bin/jenkins.sh
ENTRYPOINT ["/bin/tini", "--", "/usr/local/bin/jenkins.sh"]


# from a derived Dockerfile, can use `RUN plugins.sh active.txt` to setup /usr/share/jenkins/ref/plugins from a support bundle
COPY plugins.sh /usr/local/bin/plugins.sh
COPY install-plugins.sh /usr/local/bin/install-plugins.sh

The problem was with the docker version. 问题出在docker版本上。 My Docker version was old. 我的Docker版本太旧了。 Not sure which command was not supported, but the new docker built the dockerfile. 不确定不支持哪个命令,但是新的docker构建了dockerfile。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM