You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tian2992 edited this page Oct 9, 2014
·
45 revisions
Public docker images
You can find a more complete list of images at index.docker.io
Searching the index
You can use docker search to search index.docker.io for images from the command line.
docker search debian
Found 6 results matching your query ("debian")
NAME DESCRIPTION
tianon/debian
tianon/debian-roll
mzdaniel/debian
wdtz/debian-6.0-x86 Debian 6.0 (x86), based on OpenVZ template...
findspire/wheezy Template image of Debian Wheezy.
rockstack/rockstack-debian-build
Followed by docker pull to get an image.
docker pull tianon/debian
Official images
All images from the Ubuntu repository
(try this if you get a 404 error for an individual Ubuntu image)
docker pull ubuntu
Ubuntu 12.10 Quantal base image
docker pull ubuntu:12.10
Ubuntu 12.04 LTS Precise base image
docker pull ubuntu:12.04
openSUSE Linux base image
docker pull opensuse:latest
and tags
docker pull opensuse:13.1
Centos 6.4 base image
Thanks to @backjlack
docker pull centos
Busybox base image
docker pull busybox
Unofficial images
Gentoo base image
docker pull tianon/gentoo:latest
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.
docker run -p :6379 -p :80 samalba/hipache supervisord -n
This will launch a supervisord in foreground which spawns an Hipache daemon (using the dev config, but easy to change) + redis-server.
The redis-server is spawned inside the same container on purpose. Current Hipache's architecture does not share a Redis among several machines, but among several Hipache's workers in the same machine.