无法找到导体容器。首先运行`ansible-container build`

时间:2017-06-14 15:46:34

标签: docker ansible

我正在尝试使用ansible-container,但得到以下错误。

以下示例: -

http://docs.ansible.com/ansible-container/getting_started.html#real-world-usage-starting-from-a-working-base-setup

Conductor container can't be found. Run `ansible-container build` first 

1 个答案:

答案 0 :(得分:0)

最近在处理Solr Ansible Container项目时遇到了同样的错误:

$ ansible-container --var-file vars.yml build
Building Docker Engine context...   
Starting Docker build of Ansible Container Conductor image (please be patient)...   
ERROR   Conductor container can't be found. Run `ansible-container build` first

要获得更多有用的输出(默认情况下Ansible Container非常安静!),您可以使用--debug

$ ansible-container --debug --var-file vars.yml build

现在,当ansible-container构建您的图像(和指挥)时,您将看到构建过程的实时输出。运气好的话,最后几行输出应显示错误信息。

有趣的是,在我的情况下,只使用--debug运行另一个版本(在三个失败的没有之后),一切都成功了。奇怪的。也许对你来说也是一样的:D