hi
-- I am following this guide to have a run jenkins pipeline in my mac https://jenkins.io/doc/pipeline/tour/agents/
You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/e40b57a2-e315-41d6-981d-a88bc48964e3%40googlegroups.com. For more options, visit https://groups.google.com/d/optout. |
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/f32bca9148471ff7381f5404a747b0151305996e/src/main/resources/org/jenkinsci/plugins/docker/workflow/DockerDSL/help.jelly#L31-L37 Best regards, Oleg Nenashev пятница, 24 ноября 2017 г., 11:27:02 UTC+3 пользователь Lynn Lin написал:
You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/1e9ece03-b187-42c0-9670-4fa1d683942a%40googlegroups.com. For more options, visit https://groups.google.com/d/optout. |
Oleg Nenashev <[hidden email]>于2017年11月26日 周日上午8:55写道:
Thanks, but you can see from the log that Docker pull already succeeded so curious why Docker inspect fails
You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/CAPgpnMSpzd3jxDaaOJ%2Bi-5g%3D2zWyOytSFPT-GBhOXMBPpp4GEg%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout. |
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 or directory
at org.jenkinsci.plugins.docker.commons.impl.RegistryKeyMaterialFactory.materialize(RegistryKeyMaterialFactory.java:101)
at org.jenkinsci.plugins.docker.workflow.AbstractEndpointStepExecution2.doStart(AbstractEndpointStepExecution2.java:53)
at org.jenkinsci.plugins.workflow.steps.GeneralNonBlockingStepExecution.lambda$run$0(GeneralNonBlockingStepExecution.java:77)
On Monday, 27 November 2017 at 01:21:50 UTC+5:30 [hidden email] wrote:
You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/9b5aa15e-d273-4f40-b0b9-5bb08286e010n%40googlegroups.com. |
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 Jenkins and the Docker socket, but this configuration is for local testing never for a production environment. Something like this
docker run -it -v $(command -v docker):/usr/bin/docker -v /var/run/docker.sock:/var/run/docker.sock jenkins:lts El jueves, 28 de enero de 2021 a las 11:59:06 UTC+1, [hidden email] escribió: Hi, You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/1b2a3994-ad69-47e2-b885-2a24226af8een%40googlegroups.com. |
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 Docker command line interface on the Jenkins controller should not be done in production. Jobs should run on agents, not on the Jenkins controller. I think you should use agents that are able to run the Docker images and use separate agents to create Docker images. On Thu, Jan 28, 2021 at 9:24 AM Ivan Fernandez Calvo <[hidden email]> wrote: 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 Jenkins and the Docker socket, but this configuration is for local testing never for a production environment. Something like this You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/CAO49JtHqJ%3Di4zXuYgi0vy4M4PcP%2BeQXdoo2KHg5hHp0yhTQMdg%40mail.gmail.com. |
Free forum by Nabble | Edit this page |