1. 適当なimageを探す
# docker search centos5
2.手順1で探したimageをダウンロードする
# docker pull fatherlinux/centos5-base
3.ダウンロードしたimageを確認する
# docker images
fatherlinux/centos5-base latest 09a12fae6313 8 months ago 1.139 GB ←手順2でpullしたイメージ
4. コンテナを作成する
docker run -i -t -name cent5 fatherlinux/centos5-base /bin/bash
5.確認
# cat /etc/redhat-release
CentOS release 5.10 (Final)
おわり