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

时间:2018-10-16 02:07:10

标签: docker jenkins-pipeline

这是我在项目中的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'
            }
        }
    }
}

我分别有一个詹金斯主代理和从代理。上面的管道在主节点上运行良好,但是如果在从代理节点上运行,则会遇到以下错误:

Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?

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

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

1 个答案:

答案 0 :(得分:0)

我不知道为什么,但是我通过以下更改对其进行了修复:将-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'
            }
        }
    }
}