=========================================================================
在已有image基础上创建一个image
===============================
1、编辑Dockfile
FROM daocloud.io/library/ubuntu
CMD echo hello world
2、生成image,指定image名称为test
docker build -t test .
3、执行新image
docker run test
=========================================================================