Jenkins pipeline docker agent - docker run error - Failed to run image - java.io.IOException
- 阅读更多 关于 Jenkins pipeline docker agent - docker run error - Failed to run image - java.io.IOException
问题 I have tried used jenkins with docker, both are installed on my machine (w10) and I run docker images with jenkins. But when i followed the example in the jenkins documentation (example from doc) it didn't work. Different pipeline scripts worked when not involving the agent { docker ... } , I also tried adding the docker plugin from the jenkins config interface. pipeline script // Jenkinsfile (Declarative Pipeline) pipeline { agent { docker { image 'maven:3.3.3' } } stages { stage('build') {