我跑了docker images,遇到以下错误:
docker images
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/
您需要执行 一次 :
boot2docker init
然后,每次重新启动Mac时,您都需要运行:
boot2docker start
这是启动docker守护程序的命令。但是,在要从中访问它的每个shell上,都需要运行:
$(boot2docker shellinit)
现在您可以使用docker客户端,例如:
docker run hello-world