Notes icon indicating copy to clipboard operation
Notes copied to clipboard

centos安装docker + jenkins

Open any86 opened this issue 4 years ago • 0 comments

安装docker

curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun

启动docker

service docker start

安装jenkins

docker run -d --name myjenkins -p 8081:8080 -p 50000:50000 -v /var/jenkins_home docker.io/jenkins/jenkins

获取jenkins初始密码

docker exec myjenkins tail /var/jenkins_home/secrets/initialAdminPassword

jenkins中需要安装的插件

Nodejs

image

Gitee

image

image

pushplus

下载pushplus

image

image

Publish over SSH

image

any86 avatar Jan 05 '21 05:01 any86