1:安裝febootstrapdocker
yum -y install febootstrap
2:使用febootstrap下載製做鏡像所需文件。shell
febootstrap -i bash -i wget -i yum -i iputils -i iproute -i vim -i httpd centos72 centos72-path https://mirrors.aliyun.com/centos/7/os/x86_64/
注:-i 安裝package, 不加任何參數製做的系統是最簡版, centos72 操做系統版本標識,centos72-path 安裝目錄,能夠是相對路徑,也能夠是絕對路徑,最後是源地址,能夠是網絡地址,也能夠是本地。bootstrap
3:成功後進入安裝目錄,製做Docker鏡像vim
cd centos72-path tar -c .|docker import - centos72-bash
注:centos72-bash 是製做完成後的鏡像名字。這裏的意思是從歸檔文件夾centos72-path中建立名爲centos72-bash的鏡像。
centos
4:完成後使用Docker images 查看是否建立成功。bash
docker images
5:驗證是否可使用。網絡
docker run -it centos72-bash /bin/bash