Skip to content

Public docker images

tianon edited this page Apr 21, 2013 · 45 revisions

Public docker images

Official images

Ubuntu 12.10 Quantal base image

docker pull ubuntu:12.10

Ubuntu 12.04 TLS Precise base image

docker pull ubuntu:12.04

Centos 6.4 base image

docker pull centos

Unofficial images

Gentoo base image

docker pull tianon/gentoo

Note that this image is currently not functional due to some minor changes in docker that switched from using ifconfig to ip inside the image (and that existing image is merely a faithful copy of the stage3 tarball; see also #313).

Arch Linux base image

(Available somewhere, can't remember where)

Debian Squeeze base image

Not available, maintainer wanted!

Redis

http://redis.io

See @johncosta 's awesome blog post.

docker run -p 6379 johncosta/redis redis-server

ZNC irc bouncer

docker run -p 6667 -u irc shykes/znc zncrun

Source code available at http://github.com/shykes/docker-znc

Dockerbuilder

Build and upload binary releases of docker

docker run shykes/dockerbuilder dockerbuilder REVISION S3_ID S3_KEY

Python app builder

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

Clone this wiki locally