共计 1487 个字符,预计需要花费 4 分钟才能阅读完成。
Jenkins 与 Docker 相关的 Plugin 使用
Jenkins 与 Docker 相关的 Plugin
在 Jenkins Plugin 页面搜索与 Docker 相关的插件,有如下几个:
- CloudBees Docker Build and Publish plugin — This plugin provides the ability to build projects with a Dockerfile, and publish the resultant tagged image (repo) to the docker registry.
- Docker build step plugin — This plugin allows to add various Docker commands into you job as a build step.
- Docker Plugin — This plugin allows slaves to be dynamically provisioned using Docker.
- Kubernetes Plugin — This plugin allows slaves to be dynamically provisioned on multiple Docker hosts using Kubernetes.
- Docker Commons Plugin — APIs for using Docker from other plugins.
其中,它们间的关系如下:
- Docker commons Plugin 为其他与 Docker 相关的插件提供了 APIs
- CloudBees Docker Build and Publish plugin 和 Docker build step plugin 都依赖了 Docker commons Plugin
- Kubernetes Plugin 依赖了 Docker Plugin
下面主要介绍下 Docker build step plugin 和 CloudBees Docker Build and Publish plugin 的使用。
Docker build step plugin 使用
设置 Docker URL
系统管理→系统设置→Docker Builder,设置 Docker URL 并测试连接。
在 Jenkins JOB 的构建区域,增加构建步骤→Execute Docker container
有一系列 Docker Command 可选择
以重启一个容器为例
选择 Restart containers 命令,并填写 Container ID(s):
Jenkins JOB 创建成功后,点击构建,日志输出如下:
以 Push 镜像到 Docker registry 为例
选择 Push images 命令,并填写相关信息:
Jenkins JOB 创建成功后,点击构建,日志输出如下:
Docker Build Publish Plugin 使用
设置源码地址,这里使用的是 GIT@OSC
该项目是个 Docker 化的项目,Dockerfile 在根目录下
在 Jenkins JOB 的构建区域,增加构建步骤→Docker Build and Publish
此外,Docker Build Publish Plugin 还要一些高级选项
Jenkins JOB 创建成功后,点击构建,日志输出如下
参考
- Docker+build+step+plugin
- Docker+Build+and+Publish+plugin
Jenkins 的分布式构建及部署——节点 http://www.linuxidc.com/Linux/2015-05/116903.htm
Jenkins 的详细介绍 :请点这里
Jenkins 的下载地址 :请点这里
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2015-07/120287.htm
正文完
星哥玩云-微信公众号