3

我正在使用 Jenkins 声明性管道和 Docker-for-Windows 代理通过Dockerfile.

注意:不幸的是,目前还不是使用基于 Linux 的 docker 守护程序的解决方案,因为我需要运行 Windows 二进制文件。

设置: Jenkins master 通过 Docker 在 Linux 16.04 上运行。Jenkins 构建代理是

  • Windows 10 企业版 1709 (16299.551)
  • Docker-for-Windows 17.12.0-ce

Docker 18.x 在尝试使用 Windows Containers 时让我头疼,所以我回滚到 17.x。尝试使用 Jenkins 运行并且 nohup 不在路径上时,我仍然遇到一些问题,但是通过将 Git 二进制文件添加到 Windows 搜索路径另一个参考)来解决它。我怀疑我当前的问题可能与此有关。

代码:我正在尝试初始化 aJenkinsfile并在其中运行一个简单的 hello-world-printout。

/詹金斯文件

pipeline {
  agent none
  stages {
    stage('Docker Test') {
      agent {
        dockerfile {
          filename 'Dockerfile'
          label 'windocker'
        }
      }
      steps {
        println 'Hello, World!'
      }
    }
  }
}

/Dockerfile

FROM python:3.7-windowsservercore
RUN python -m pip install --upgrade pip

基本上,这应该是一个简单的打印“Hello, World!”的干净图像。但它在詹金斯身上失败了!

日志输出:

[C:\jenkins\workspace\dockerfilecd4c215a] Running shell script
+ docker build -t cbe5e0bb1fa45f7ec37a2b15566f84aa9bd08f5d -f Dockerfile .
Sending build context to Docker daemon  337.4kB

Step 1/2 : FROM python:3.7-windowsservercore
 ---> 340689b75c39
Step 2/2 : RUN python -m pip install --upgrade pip
 ---> Using cache
 ---> a93f446a877f
Successfully built a93f446a877f
Successfully tagged cbe5e0bb1fa45f7ec37a2b15566f84aa9bd08f5d:latest
[C:\jenkins\workspace\dockerfilecd4c215a] Running shell script
+ docker inspect -f . cbe5e0bb1fa45f7ec37a2b15566f84aa9bd08f5d
.
Cannot run program "id": CreateProcess error=2, The system cannot find the file specified
4

1 回答 1

5

问题是,目前不支持 windows。它正在调用linux“id”命令来获取当前用户id。

Jenkins 有一个开放的 Pull Request 和 JIRA Ticket 来支持 Windows docker 管道:

于 2019-02-02T14:24:14.953 回答