dockerfile / ubuntu

Ubuntu Dockerfile for trusted automated Docker builds.
http://dockerfile.github.io/#/ubuntu
MIT License
459 stars 1.28k forks source link

dockerfile/ubuntu removed in docker hub registry? #10

Open wbingli opened 9 years ago

wbingli commented 9 years ago
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 commented 9 years ago

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 commented 9 years ago

https://registry.hub.docker.com/u/dockerfile/ubuntu/ is redirecting me to https://registry.hub.docker.com/u/library/ubuntu/

fabricionaweb commented 9 years ago

+1 same problem

dbu commented 9 years ago

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 commented 9 years ago

+1

doctapp commented 9 years ago

+1

andykamto commented 9 years ago

+1 same problem

interair commented 9 years ago

+1

joelesalas commented 9 years ago

+1

shaunc commented 9 years ago

+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 commented 9 years ago

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

sushilshah commented 9 years ago

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

matthewmueller commented 9 years ago

+1

brandtabbott commented 8 years ago

+1

phoenix888 commented 8 years ago

+1

allnash commented 8 years ago
frogstarr78 commented 8 years ago

+1

wkubota commented 8 years ago

+1

lukeblechl commented 8 years ago

+1

amalagaura commented 8 years ago

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

MarkusPfundstein commented 8 years ago

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

amalagaura commented 8 years ago

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

robmcfeely commented 8 years ago

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 commented 8 years ago

+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 https://github.com/dockerfile/nginx/issues/28 .

raskolnikov7 commented 8 years ago

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

wutingbupt commented 8 years ago

no one fix?

robmcfeely commented 8 years ago

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 commented 8 years ago

Replace docker pull dockerfile/ubuntu with docker pull ubuntu

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