Error starting automatic docker assembly: cannot find image

I have an automatic docker build and the build works 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 

Launch command:

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

I am trying to check:

but. docker is looking for an image locally b. if the image is not found locally, then the docker will successfully pull out and launch the image

The image is really https://registry.hub.docker.com/u/dtwill/ddcintegrationdevenvs/

+1
docker build automation
Sep 11 '14 at
source share
1 answer

The image associated with you is closed. You did docker login or created a file . Dockercfg to docker run ?

(BTW, I'm related to an outdated commit in the docker source code repository for the authentication file, as it seems to be broken in the current documentation.)

+7
Sep 11 '14 at 16:51
source share



All Articles