i think a script needs to be updated; i think that should be docker_registry:master
what do you see if you try "docker images" ?
i could be wrong about that
yeah, disregard that
ravips
docker images shows "127.0.0.1:5042/docker_registry latest 934d6dcb7b93 15 minutes ago 409.7 MB ..." but we are referencing docker_registry:master. I think that's the issue here
datsun180b
okay. i remember a patch changing an image name from :master to :latest; i couldn't remember which way that change went but it looks like :latest is correct
ravips
oops, I meant instead of docker_registry:latest image we need to search for '127.0.0.1:5042/docker_registry:latest'
datsun180b
in lp-cedarish/docker/unittest-app there's the line DOCKER_REGISTRY=${DOCKER_REGISTRY:-'127.0.0.1:5042'}
maybe that didn't make to the other scripts?
ravips
datsun180b: okay, I think we found the issue..probably need to change 'glance image-show $APP:latest' to 'glance image-show $DOCKER_REGISTRY/$APP:latest' in contrib/lp-dockerfile/docker/build-app..testing this change now
datsun180b
sounds about right
the lp-cedarish scripts have gotten the majority of my attention
Drago has quit
achanda joined the channel
ravips
datsun180b: we need to make some more fixes in lp-dockerfile/docker/build-app, just changing to $DOCKER_REGISTRY/$APP:latest is not sufficient. the script does docker build but it does not push the image to glance (i don't see glance create or sth equivalent) so as expected trying to fetch the image from glance fails with no image with that name