Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dockerfile/ubuntu removed in docker hub registry? #10

Open
wbingli opened this issue May 11, 2015 · 28 comments
Open

dockerfile/ubuntu removed in docker hub registry? #10

wbingli opened this issue May 11, 2015 · 28 comments

Comments

@wbingli
Copy link

wbingli commented May 11, 2015

docker pull dockerfile/ubuntu
Pulling repository dockerfile/ubuntu
FATA[0001] Error: image dockerfile/ubuntu:latest not found

Looks all dockerfile images cannot be found from docker hub.

@corpulent
Copy link

I am getting the same thing:

root@XXX:~# sudo docker pull dockerfile/ubuntu
Pulling repository dockerfile/ubuntu
FATA[0000] Error: image dockerfile/ubuntu:latest not found 

My solution was to run this docker build -t="dockerfile/ubuntu" github.com/dockerfile/ubuntu but what about all the other layers that are depending on dockerfile/ubuntu, like dockerfile/nginx? I have to install all dependencies manually in order.

@alt-grr
Copy link

alt-grr commented May 20, 2015

@fabricionaweb
Copy link

+1 same problem

@dbu
Copy link

dbu commented May 29, 2015

it looks like the whole organisation moved to https://github.com/docker-library/ - is that the case? then maybe updating the github.io page and the readme in the repositories would help...

@bennekrouf
Copy link

+1

1 similar comment
@doctapp
Copy link

doctapp commented Jun 18, 2015

+1

@andykamto
Copy link

+1 same problem

@interair
Copy link

interair commented Jul 1, 2015

+1

1 similar comment
@joelesalas
Copy link

+1

@shaunc
Copy link

shaunc commented Jul 16, 2015

+1 ... um and everything has to be updated that uses this? (was just trying to pull dockerfile/mongodb...) Seems like they should add alias. Hard name switch is harsh.

@jvanoosterom
Copy link

this move below indeed breaks a lot ...:
http://blog.docker.com/2015/03/updates-available-to-popular-repos-update-your-images/

@sushilshah
Copy link

+1
sudo docker pull dockerfile/mongodb
Pulling repository dockerfile/mongodb
Error: image dockerfile/mongodb:latest not found

@matthewmueller
Copy link

+1

2 similar comments
@brandtabbott
Copy link

+1

@phoenix888
Copy link

+1

@allnash
Copy link

allnash commented Sep 15, 2015

  • 1

@frogstarr78
Copy link

+1

2 similar comments
@wkubota
Copy link

wkubota commented Sep 25, 2015

+1

@lukeblechl
Copy link

+1

@amalagaura
Copy link

WTF all docker images are broken? I can't use the java image either.

@MarkusPfundstein
Copy link

is there anyone out there from Docker that actually cares about this?

@amalagaura
Copy link

@MarkusPfundstein I had to search around, but they do exist in other places. They got rename/moved to docker hub I believe.

@robmcfeely
Copy link

If you read @jvanoosterom comment you will see that they have just moved. instead of dockerfile/ubuntu its just ubuntu. So docker pull ubuntu

@strarsis
Copy link

strarsis commented Jan 7, 2016

+1

I try to build nginx official docker image Dockerfile by my own,
but ubuntu:latest, the official image from Dockerhub, isn't sufficient for building,
the add-apt-repository shell script/command is missing (not included in the image):
https://github.com/dockerfile/nginx/blob/master/Dockerfile#L12

Edit: Package 'software-properties-common' provides this command, I had to install it first.
As the nginx Dockerfile doesn't have to install that package before invoking this command -
one must assume the base image deviates from ubuntu in Dockerhub, it is a different one!

Edit: Apparently it is a github repository that has been formerly used for the official nginx repository:
https://github.com/dockerfile/nginx
The nginx repository links to another github repository: https://github.com/nginxinc/docker-nginx/blob/a8b6da8425c4a41a5dedb1fb52e429232a55ad41/Dockerfile

See dockerfile/nginx#28 .

@raskolnikov7
Copy link

I got the same error
Error: image dockerfile/ubuntu:latest not found

@wutingbupt
Copy link

no one fix?

@robmcfeely
Copy link

YES ITS WORKS (at least for the basic case) read my last comment. For dependant dockerfiles you will prob have to update those scripts

@viclix10
Copy link

Replace
docker pull dockerfile/ubuntu
with
docker pull ubuntu

Similarly for Dockerfile, Pull base image, replace
FROM dockerfile/ubuntu
with
FROM ubuntu

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests