自动化码垛机构建运行错误

自动化码垛机构建运行错误

本文介绍了自动化码垛机构建运行错误:无法找到图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个自动化的docker构建设置,并且构建似乎工作正常,但是当我尝试运行它时,我得到这个错误:

 无法在本地找到图像'dtwill / ddcintegrationdevenvs:blkmesa_esrbtmq'
拉取存储库dtwill / ddcintegrationdevenvs
2014/09/11 14:33:20错误:image dtwill / ddcintegrationdevenvs not found

运行命令:

  docker run -i -p 9200:9200 -p 9300:9300 -p 9001:9001 -p 15672:15672 --rm -t dtwill / ddcintegrationdevenvs:blkmesa_esrbtmq 
/ pre>

我试图测试:



a。码头在本地寻找图像
b。如果在本地没有找到停靠点的人将成功拉和运行图像的图像



图像有效 https://registry.hub.docker.com/ u / dtwill / ddcintegrationdevenvs /

解决方案

您链接的图像是私有的。您是否执行了一个 docker登录或创建一个?



(BTW,我链接到验证文件的docker源代码中的过期提交,因为它似乎在当前文档中被破坏。)


I have an automated docker build set up and the build appears to be working fine but when I try to run it I get this error:

  Unable to find image 'dtwill/ddcintegrationdevenvs:blkmesa_esrbtmq' locally
  Pulling repository dtwill/ddcintegrationdevenvs
  2014/09/11 14:33:20 Error: image dtwill/ddcintegrationdevenvs not found

Run command:

  docker run -i -p 9200:9200 -p 9300:9300 -p 9001:9001 -p 15672:15672 --rm -t dtwill/ddcintegrationdevenvs:blkmesa_esrbtmq

I'm trying to test:

a. docker looks for image locally b. if image is not found locally that docker will successfully pull and run image

Image is valid https://registry.hub.docker.com/u/dtwill/ddcintegrationdevenvs/

解决方案

The image you linked to is private. Did you do a docker login or create a .dockercfg file before docker run?

(BTW, I linked to an outdated commit in the docker source repo for the authentication file since it seems to be broken in the current documentation.)

这篇关于自动化码垛机构建运行错误:无法找到图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-01 21:06