Sunday, July 26, 2015

caffe - Pulling docker image using Ubuntu


I correctly install docker and test it. i pull some of images using



docker pull imagename



but i am having problem while pulling caffe image.


i used the command



'docker pull bvlc/caffe'



and i get the following error:



Error response from daemon: manifest for bvlc/caffe:latest not found



Please note that docker pull Ubuntu is working and Ubuntu image is on my system.


Answer



You should use this command:


docker pull bvlc/caffe:cpu

Refer to this official readme link


Hop this help!


No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...