gpt4 book ai didi

docker - 为什么我的Docker构建无法在jenkins代理上失败?

转载 作者:行者123 更新时间:2023-12-02 19:29:31 24 4
gpt4 key购买 nike

这是我在项目中的Jenkinsfile管道

pipeline {
agent {
docker {
image 'docker:dind'
args '-u root:root -p 3000:3000 --privileged'
}
}

environment {
CI = 'true'
}

stages {
stage('docker build') {
when {
branch 'master'
}
steps {
sh 'docker build --label v1.0.0 -t myrepo/myapp:v1.0.0'
}
}
}
}

我分别有一个 Jenkins 主代理和从代理。上面的管道在主节点上运行良好,但是如果在从代理节点上运行,则会遇到以下错误:
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?

我非常确定docker正在代理节点上运行,因为我可以使用ssh并成功运行docker命令。

为什么在主代理和从代理上运行时它的行为有所不同?我该如何解决?非常感谢!

最佳答案

我不知道为什么,但是我通过以下更改对其进行了修复:将-v /var/run/docker.sock:/var/run/docker.sock应用于args。

pipeline {
agent {
docker {
image 'docker:dind'
args '-u root:root -p 3000:3000 --privileged -v /var/run/docker.sock:/var/run/docker.sock'
}
}

environment {
CI = 'true'
}

stages {
stage('docker build') {
when {
branch 'master'
}
steps {
sh 'docker build --label v1.0.0 -t myrepo/myapp:v1.0.0'
}
}
}
}

关于docker - 为什么我的Docker构建无法在jenkins代理上失败?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52826971/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com