Dockerfile中的centos6.6报错
centos6.6 in Dockerfile gives error
我正在尝试在 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'.
如果我遗漏了什么,有人可以建议我吗?
错误似乎很明显:您没有在 Dockerfile
或命令行中为 运行 指定命令。你可以试试:
docker run -it trial bash
...如果你想要 shell。或者您可以添加到您的 Dockerfile
:
CMD ["bash"]
...如果命令行上没有提供任何命令,现在您的图像将 运行 默认情况下如此。
我正在尝试在 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'.
如果我遗漏了什么,有人可以建议我吗?
错误似乎很明显:您没有在 Dockerfile
或命令行中为 运行 指定命令。你可以试试:
docker run -it trial bash
...如果你想要 shell。或者您可以添加到您的 Dockerfile
:
CMD ["bash"]
...如果命令行上没有提供任何命令,现在您的图像将 运行 默认情况下如此。