moby: Can't pull image on my ubuntu 13.04

Hi,

I’m using last master and current v0.5.2 version on ubuntu 13.04 (clean install) with 3.8.0-27-generic kernel.

When i pull image from repository i haven’t any output and no errors :

root@ks3354934:~# docker pull ubuntu
Pulling repository ubuntu
root@ks3354934:~#

And with hello world command :

root@ks3354934:~# docker run -i -t ubuntu /bin/bash                             
Pulling repository ubuntu
2013/08/09 13:36:51 Error: No such image: ubuntu
root@ks3354934:~#

It’s not an network issue because curl https://index.docker.io/v1/repositories/ubuntu/images return json. I tested on another ubuntu it’s work. I would like to know why isn’t working on this server?

Thank you !

About this issue

  • Original URL
  • State: closed
  • Created 11 years ago
  • Comments: 45 (11 by maintainers)

Most upvoted comments

What if I want to use bind9 with docker? I have only one dev machine and can’t turn of the dns.

i solved this by adding:

nameserver 127.0.0.1
nameserver 8.8.8.8
nameserver 8.8.4.4

to /etc/resolv.conf

Hope this helps someone. Running ubuntu 14.04 LTS from OVH

I’m having the same issue running coreos inside a vagrant machine (osx host).

The solution was to restart docker service:

sudo systemctl restart docker.service