大家好我使用Jenkins进行初始安装。这是我的剧本:
# Setup installation repository
yum install -y yum-utils device-mapper-persistent-data lvm2
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
yum makecache fast
# Install
yum install docker-ce
# Run
systemctl start docker
# Test
docker run hello-world
#Add user to the group
usermod -aG docker root
如果我的docker运行hello-world因任何原因失败,怎么能让Jenkins失败。有人知道脚本吗?我从我的Jenkins master中的“Execute Shell”占位符运行shell脚本,它执行我的从属节点上的所有内容。这是个好主意吗?