博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jenkins-python3.6.8-ansible2.5 docker镜像创建
阅读量:5806 次
发布时间:2019-06-18

本文共 6887 字,大约阅读时间需要 22 分钟。

dockerfile

FROM openjdk:8-jdk#debain 9#将debain源替换成阿里源RUN echo "deb http://mirrors.aliyun.com/debian/ stretch main non-free contrib" > /etc/apt/sources.list\        && echo "deb-src http://mirrors.aliyun.com/debian/ stretch main non-free contrib" >> /etc/apt/sources.list\        && echo "deb http://mirrors.aliyun.com/debian-security stretch/updates main" >> /etc/apt/sources.list\        && echo "deb-src http://mirrors.aliyun.com/debian-security stretch/updates main" >> /etc/apt/sources.list\        && echo "deb http://mirrors.aliyun.com/debian/ stretch-updates main non-free contrib" >> /etc/apt/sources.list\        && echo "deb-src http://mirrors.aliyun.com/debian/ stretch-updates main non-free contrib" >> /etc/apt/sources.list\        && echo "deb http://mirrors.aliyun.com/debian/ stretch-backports main non-free contrib" >> /etc/apt/sources.list\        && echo "deb-src http://mirrors.aliyun.com/debian/ stretch-backports main non-free contrib" >> /etc/apt/sources.listRUN apt-get update && apt-get install -y git curl && rm -rf /var/lib/apt/lists/*ARG user=rootARG group=rootARG uid=0ARG gid=0ARG http_port=8080ARG agent_port=50000ENV JENKINS_HOME /var/jenkins_homeENV JENKINS_SLAVE_AGENT_PORT ${agent_port}# 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 upgradesVOLUME /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.dENV TINI_VERSION 0.14.0ENV 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 imageARG JENKINS_VERSIONENV JENKINS_VERSION ${JENKINS_VERSION:-2.60.3}# jenkins.war checksum, download will be validated using itARG JENKINS_SHA=2d71b8f87c8417f9303a73d52901a59678ee6c0eefcf7325efed6035ff39372a# Can be used to customize where jenkins.war get downloaded fromARG 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/8331RUN curl -fsSL ${JENKINS_URL} -o /usr/share/jenkins/jenkins.war \  && echo "${JENKINS_SHA}  /usr/share/jenkins/jenkins.war" | sha256sum -c -ENV JENKINS_UC https://updates.jenkins.ioENV JENKINS_UC_EXPERIMENTAL=https://updates.jenkins.io/experimentalRUN 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.logUSER ${user}COPY jenkins-support /usr/local/bin/jenkins-supportCOPY jenkins.sh /usr/local/bin/jenkins.shENTRYPOINT ["/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 bundleCOPY plugins.sh /usr/local/bin/plugins.shCOPY install-plugins.sh /usr/local/bin/install-plugins.sh#python 3.6.8RUN apt-get update && apt-get install -y build-essential libncurses5-dev \	libncursesw5-dev libreadline6-dev libdb5.3-dev libgdbm-dev \	libsqlite3-dev libssl-dev libbz2-dev libexpat1-dev liblzma-dev \	zlib1g-dev libssl-dev openssl && rm -rf /var/lib/apt/lists/*ENV PATH /usr/app/python3.6/bin:$PATHENV LANG C.UTF-8ENV GPG_KEY 0D96DF4D4110E5C43FBFB17F2D347EA6AA65421DENV PYTHON_VERSION 3.6.8#RUN set -ex  apt-get install -y build-essential libncurses5-dev libncursesw5-dev libreadline6-dev libdb5.3-dev libgdbm-dev libsqlite3-dev libssl-dev libbz2-dev libexpat1-dev liblzma-dev zlib1g-dev libssl-dev openssl#COPY Python-3.6.8.tar.xz python.tar.xz#COPY Python-3.6.8.tar.xz.asc python.tar.acsRUN set -ex \        \        && wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" \        && wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" \        && export GNUPGHOME="$(mktemp -d)" \        && { command -v gpgconf > /dev/null && gpgconf --kill all || :; } \        && rm -rf "$GNUPGHOME" python.tar.xz.asc \        && mkdir -p /usr/src/python \        && tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz \        && rm python.tar.xz \        \        && cd /usr/src/python \        && mkdir /usr/src/python3.6 \        && ./configure \                --prefix=/usr/app/python3.6 \                --with-ensurepip=install \        && make -j "$(nproc)" \        && make install \        && ldconfig \        \       && rm -rf /usr/src/python \        \#       && python3 --version        && echo $PATH;        ENV PYTHON_PIP_VERSION 19.1.1RUN ln -s /usr/app/python3.6/bin/pip3.6 /usr/app/python3.6/bin/pip;RUN set -ex; \        pip --version; \        pip3 install --upgrade pip;\        pip3 install virtualenv;\        virtualenv -p /usr/app/python3.6/bin/python3.6 /usr/app/.py3-a2.5-env;\        #source /usr/app/.py3-a2.5-env/bin/activate;\        pip install paramiko;\        pip install PyYAML;\        pip install jinja2;WORKDIR /usr/app/.py3-a2.5-envRUN git clone https://github.com/ansible/ansible.git;WORKDIR /usr/app/.py3-a2.5-env/ansibleRUN git checkout stable-2.5;#CMD  ["cp","-a","/usr/app/.py3-a2.5-env","/data/"]

  

以下文件根据自己下载的版本自行去jenkins GITHUB下载

init.groovy  install_j_p.sh  install-plugins.sh  jenkins.sh  jenkins-support  plugins.sh

jenkins:

python 3.6.8:

启动参数:

docker run -d --name jenkins -p 50000:50000 -p 8080:8080 -p 8083:8083 -v /var/docker_data/jenkins/settings:/var/settings  -v /usr/app/maven:/usr/app/maven -v /var/lib/docker:/var/lib/docker -v /usr/java/jdk:/usr/java/jdk -v /var/docker_data/jenkins/jenkins_home:/var/jenkins_home -v /var/run/docker.sock:/var/run/docker.sock -v /usr/app/git:/usr/app/git -v /data:/data -v /usr/bin/docker:/usr/bin/docker -v /root/.m2/repository:/root/.m2/repository jenkins:python2

  

/var/docker_data/jenkins/jenkins_home:jenkins家目录
以下配置jenkins时使用到的插件,以二进制方式安装
/usr/java/jdk:二进制安装的jdk
/usr/app/git:二进制安装的git
/usr/app/maven:二进制安装的maven

转载于:https://www.cnblogs.com/sonfer/p/10856886.html

你可能感兴趣的文章
【官方文档】Nginx负载均衡学习笔记(三) TCP和UDP负载平衡官方参考文档
查看>>
opencv安装指南
查看>>
矩阵常用归一化
查看>>
Oracle常用函数总结
查看>>
Linux共享内存使用常见陷阱与分析
查看>>
Join the Alibaba Cloud Q&A contest to win tickets to CES 2018 in Las Vegas!
查看>>
It's only too late if you decide it is. Get busy living, or get busy dying(转)
查看>>
How to recover from 'programmers burnout(转)
查看>>
Visual Studio跨平台开发实战(2) - Xamarin.iOS基本控制项介绍
查看>>
重构——44移除参数(Remove Parameter)
查看>>
SQLServer数据类型优先级对性能的影响
查看>>
WCF技术剖析之二十三:服务实例(Service Instance)生命周期如何控制[上篇]
查看>>
重构——52隐藏函数(Hide Method)
查看>>
MySQL定时任务
查看>>
git仓库迁移和更新远程仓库地址
查看>>
Advanced Installer 11.9基于IIS打包札记(For MySQL)
查看>>
【我的Android进阶之旅】解决bug:You need to use a Theme.AppCompat theme (or descendant) with this activity....
查看>>
SpringCloud实战小贴士:Zuul的路径匹配
查看>>
【聚能聊有奖话题】Boring隧道掘进机完成首段挖掘,离未来交通还有多远?
查看>>
CMake 手册详解(二十)
查看>>