我运行了docker图像并出现以下错误:
FATA[0000] Get http:///var/run/docker.sock/v1.17/images/json:
dial unix /var/run/docker.sock: no such file or directory.
Are you trying to connect to a TLS-enabled daemon without TLS?
似乎没有关于如何修复错误的有用信息.可能有什么不对?
最佳答案
https://docs.docker.com/installation/mac/
原文链接:https://www.f2er.com/docker/436771.html你需要这样做一次:
boot2docker init
然后,每次重启你的mac时你都需要运行:
boot2docker start
这是启动docker守护程序的命令.但是,在您要从中访问它的每个shell上都需要运行:
$(boot2docker shellinit)
现在您可以使用docker客户端,例如:
docker run hello-world