首页 文章

Jenkins管道无法构建docker镜像

提问于
浏览
1

我试图使用Jenkins中的声明性管道从Dockerfile构建一个docker镜像 . 我已成功将'jenkins'用户添加到docker组,并可以手动运行'docker run hello-world'作为jenkins用户 . 但是,当我尝试通过管道构建时,我甚至无法运行'docker run hello-world':

从管道:

[workspace] Running shell script
+ whoami
jenkins
[workspace] Running shell script
+ groups jenkins
jenkins : jenkins docker
[workspace] Running shell script
+ docker run hello-world
docker: Got permission denied while trying to connect to the Docker 
daemon socket at unix:///var/run/docker.sock: Post 
http://%2Fvar%2Frun%2Fdocker.sock/v1.30/containers/create: dial unix 
/var/run/docker.sock: connect: permission denied.

手动sshing到Jenkins并切换到'jenkins'用户:

*********@auto-jenkins-01:~$ sudo su - jenkins -s/bin/bash
jenkins@auto-jenkins-01:~$ docker run hello-world

Hello from Docker!
This message shows that your installation appears to be working correctly.

To generate this message, Docker took the following steps:
 1. The Docker client contacted the Docker daemon.
 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
(amd64)
 3. The Docker daemon created a new container from that image which runs the
executable that produces the output you are currently reading.
 4. The Docker daemon streamed that output to the Docker client, which sent it
to your terminal.

To try something more ambitious, you can run an Ubuntu container with:
 $ docker run -it ubuntu bash

Share images, automate workflows, and more with a free Docker ID:
 https://cloud.docker.com/

For more examples and ideas, visit:
 https://docs.docker.com/engine/userguide/

其他一些有用的信息:Jenkins是从VM运行的 .

1 回答

  • 1

    需要通过编辑/ etc / default / docker并添加以下内容,将jenkins用户组权限授予docker unix socket:

    DOCKER_OPTS=' -G jenkins'
    

相关问题