Re: run jenkins pipeline fails "docker": error=2, No such file or directory

2021-01-28 Thread Mark Waite
The "Installing Jenkins" page for Docker also provides instructions that will allow a user to run some Docker commands from inside a customer Docker image that they create based on the official Jenkins images. I agree with Ivan that running the

Re: run jenkins pipeline fails "docker": error=2, No such file or directory

2021-01-28 Thread Ivan Fernandez Calvo
If you are running Jenkins ins a Docker container with the official Docker container, the docker CLI command is not installed and that's your error, you need the docker CLI installed to access a Docker Host. One trick can be to mount the binary of the Docker Host where you are running that Jenki

Re: run jenkins pipeline fails "docker": error=2, No such file or directory

2021-01-28 Thread anilkumar panditi
Hi, I have Jenkins running as docker container and in my Jenkins File , in initialize stage i have following which is working also , i have installed docker from Docker hub latest. Not sure where is the problem . Pipeline is failing with the following. ava.io.IOException: error=2, No such file

Re: run jenkins pipeline fails "docker": error=2, No such file or directory

2017-11-26 Thread Lynn Lin
Oleg Nenashev 于2017年11月26日 周日上午8:55写道: > Hi, > > Docker CLI tool needs to be installed on the machine and available in PATH > if you do not specify a Docker tool installation to be used. > See the withTool() documentation if you need to specify a tool path: > https://github.com/jenkinsci/docker-wo

Re: run jenkins pipeline fails "docker": error=2, No such file or directory

2017-11-26 Thread Oleg Nenashev
Hi, Docker CLI tool needs to be installed on the machine and available in PATH if you do not specify a Docker tool installation to be used. See the withTool() documentation if you need to specify a tool path: https://github.com/jenkinsci/docker-workflow-plugin/blob/f32bca9148471ff7381f5404a747b

run jenkins pipeline fails "docker": error=2, No such file or directory

2017-11-24 Thread Lynn Lin
hi I am following this guide to have a run jenkins pipeline in my mac https://jenkins.io/doc/pipeline/tour/agents/ pipeline { agent { docker { image 'node:7-alpine' } } stages { stage('Test') { steps { sh 'node --version' }