摘要:https://www.cnblogs.com/nyf828/p/11082633.html
摘要2:https://blog.csdn.net/wangxuelei036/article/details/107022398
Jenkins启动
使用docker安装Jenkins非常方便 , 注意版本不要弄错
- –user=root 以root权限启动容器
docker run --name dev_jenkins --user=root -p 8080:8080 -v /opt/data/jenkins_home:/var/jenkins_home -d jenkins/jenkins
- 以root用户进去容器
docker exec -it -u root 容器id /bin/bash