Dockerfile中的centos6.6给出了错误

时间:2016-10-28 23:54:39

标签: docker docker-compose dockerfile docker-machine

我想在Dockerfile中使用centos6.6, 我尝试在我的Dockerfile中逐个跟踪这两行:

FROM centos:centos6.6
FROM centos:6.6

但是在运行docker时遇到此错误:

root@onl-dev:/distros/trial# docker run -it trial
docker: Error response from daemon: No command specified.
See 'docker run --help'.

如果我在这里遗失任何东西,有人可以建议我吗?

1 个答案:

答案 0 :(得分:1)

错误似乎很清楚:您没有在Dockerfile或命令行中指定要运行的命令。你可以尝试:

docker run -it trial bash

...如果你想要一个shell。或者您可以添加到Dockerfile

CMD ["bash"]

...现在,如果命令行上没有提供命令,您的图像将默认运行。