forked from moby/moby
-
Notifications
You must be signed in to change notification settings - Fork 0
Public docker images
tianon edited this page Apr 24, 2013
·
45 revisions
(try this if you get a 404 error for an individual Ubuntu image)
docker pull ubuntu
docker pull ubuntu:12.10
docker pull ubuntu:12.04
Thanks to @backjlack
docker pull centos
docker pull busybox
docker pull tianon/gentoo
Note that this image is somewhat limited, being that it is simply a faithful copy of the stage3 tarball (see also #313). Including a copy of the portage tree would increase the image size by an appreciable amount, and would become stale quickly.
(Available somewhere, can't remember where)
Not available, maintainer wanted!
docker pull tianon/debian:wheezy
See @johncosta 's awesome blog post.
docker run -p 6379 johncosta/redis redis-server
docker run -p 6667 -u irc shykes/znc zncrun
Source code available at http://github.com/shykes/docker-znc
Build and upload binary releases of docker
docker run shykes/dockerbuilder dockerbuilder REVISION S3_ID S3_KEY
Build a python web app. Source code is at http://github.com/shykes/pybuilder
BUILD_JOB=$(docker run -d shykes/pybuilder buildapp http://github.com/shykes/helloflask/archive/master.tar.gz)
docker wait $BUILD_JOB
BUILD_IMAGE=$(docker commit $BUILD_JOB)
docker run -p 5000 $BUILD_IMAGE runapp
A ready-to-use build of the OpenCV library including NodeJS 0.8 bindings.
docker run shykes/node-opencv node -e 'console.log(require("opencv").version)'