1、拉取镜像
docker pull jenkins/jenkins:2.416
2、创建文件夹
mkdir -p /home/jenkins_mount
chmod 777 /home/jenkins_mount
3、运行并构建容器
docker run --restart=always -d -p 10240:8080 -p 10241:50000 -v /home/jenkins_mount:/var/jenkins_home -v /etc/localtime:/etc/localtime --name myjenkins jenkins/jenkins:2.416
4、配置镜像加速,进入 cd /home/jenkins_mount/ 目录。
5、hudson.model.UpdateCenter.xml里的内容,将 url 修改为 清华大学官方镜像:https://mirrors.tuna.tsinghua.edu.cn/jenkins/updates/update-center.json
或 http://mirror.esuni.jp/jenkins/updates/update-center.json(有效)
6、docker重启
7、 .管理员密码获取方法,编辑initialAdminPassword文件查看,把密码输入登录中的密码即可,开始使用。
8、http://localhost:10240/
注意:如果镜像拉不下来的话,修改/etc/docker下的daemon.json文件文章来源:https://www.toymoban.com/news/detail-615085.html
{
"registry-mirrors": ["http://hub-mirror.c.163.com", "https://docker.mirrors.ustc.edu.cn","https://9cpn8tt6.mirror.aliyuncs.com"],
"graph":"/home/docker"
}
9、重启docker文章来源地址https://www.toymoban.com/news/detail-615085.html
systemctl restart docker
到了这里,关于docker 搭建jenkins的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!