gpt4 book ai didi

Jenkins 中的 Docker 推送 - 拒绝 : requested access to the resource is denied

转载 作者:行者123 更新时间:2023-12-02 18:02:05 26 4
gpt4 key购买 nike

所以我试图在 Jenkins 中建立一个管道来构建镜像并将它们推送到 Docker 集线器。
我在 Manage 'Jenkins' 中的凭据与“docker-hub-credentials”相同,并且似乎已被使用。

它可以构建,但它只是无法通过推送...帮助?我已经做了几个小时了,我不确定我错过了什么。

我已经尝试过使用 docker login,但是 jenkins 不允许。

stage('Build image') {
/* This builds the actual image; synonymous to
* docker build on the command line */

bat 'docker build -t username/foldername:build . ' }


stage('Push image') {
/* Finally, we'll push the image with two tags:
docker.withRegistry('https://registry.hub.docker.com', 'docker-hub-credentials') {
bat 'docker push username/foldername:build'
}
}

我希望图像被推送,但我有这个:
The push refers to repository [docker.io/username/foldername]
a73d7d9f4346: Preparing
964bdfb24a54: Preparing
1af124d739c9: Preparing
6cffeea81e5d: Preparing
614a79865f6d: Preparing
612d27bb923f: Preparing
ef68f6734aa4: Preparing
612d27bb923f: Waiting
ef68f6734aa4: Waiting
denied: requested access to the resource is denied

最佳答案

我找到了答案!!!

 stage('Push image') {
withDockerRegistry([ credentialsId: "docker-hub-credentials", url: "" ]) {
bat "docker push devopsglobalmedia/teamcitydocker:build"
}

关于Jenkins 中的 Docker 推送 - 拒绝 : requested access to the resource is denied,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54446001/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com