当我在我的电脑上运行Docker镜像时,我始终得到了错误

这是我第一次学习Docker,按照Docker提到的步骤进行操作,但是我在Boot2Docker Start: $ docker run hello-world运行下面的命令Boot2Docker Start: $ docker run hello-world ,我得到了下面的错误响应:

 An error occurred trying to connect: Post https://192.168.59.103:2376/v1.19/containers/create: Service Unavailable 

为了重置/重新启动boot2docker:

 boot2docker start boot2docker shellinit boot2docker ssh 

之后,任何连接问题可能是由于代理。

OP Ray通过在容器中打开一个bash来解决超时问题 :

  docker run -it -p 80:80 fe65a2781dae /bin/bash,