Docker在运行时暂停-等待条件退出

Docker在运行时暂停-等待条件退出,docker,Docker,正在尝试运行一个小的100mb docker映像。它最终会运行,但需要大约5分钟才能成功运行。当它运行时,会出现以下错误: time="2018-09-25T10:20:28+01:00" level=error msg="error waiting for container: error during connect: Post http://XYZ/v1.32/containers/933e895a7a1429199f053ab6f384589307c927ebe9833f368352e1

正在尝试运行一个小的100mb docker映像。它最终会运行,但需要大约5分钟才能成功运行。当它运行时,会出现以下错误:

time="2018-09-25T10:20:28+01:00" level=error msg="error waiting for container: error during connect: Post http://XYZ/v1.32/containers/933e895a7a1429199f053ab6f384589307c927ebe9833f368352e196246308a0/wait?condition=next-exit: EOF"
我在谷歌上搜索过,但它似乎没有出现在搜索结果中。有什么方法可以让我知道发生了什么吗?

从提供的URL:

http://XYZ/v1.32/containers/{...container_ID...}/wait?condition=next-exit
有人可能会假设,导致此错误的原因是试图与Docker引擎API进行对话,更具体地说,与端点进行对话:

等待集装箱 阻塞,直到容器停止,然后返回退出代码

查询参数:

等待容器状态达到给定条件,
'not-running'
(默认)、
'next-exit'
'removed'

…但存在连接问题

 POST /containers/{id}/wait
 condition string     "not-running"