执行jenkins pipeline时docker build失败[关闭]

new9mtju  于 2023-10-16  发布在  Docker
关注(0)|答案(1)|浏览(123)

**已关闭。**此问题需要debugging details。它目前不接受回答。

编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答这个问题。
昨天关门了。
Improve this question

+ docker build -t devopsmydockerhub/spring-k8s:latest .
/var/jenkins_home/workspace/spring-test@tmp/durable-a8cccece/script.sh: 1: docker: Permission denied
[Pipeline] }
[Pipeline] // script
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // node
[Pipeline] End of Pipeline
ERROR: script returned exit code 127
Finished: FAILURE

如何解决这些问题。我使用Docker容器运行Jenkins

zfciruhq

zfciruhq1#

你的jenkins用户在docker组吗?

sudo usermod -aG docker jenkins
sudo service jenkins restart

你有没有尝试在你的服务器或代理上用jenkins用户执行命令?

相关问题