当前位置:   article > 正文

解决运行Unable to find image ‘hello-world:latest‘ locally_unable to find image 'hello-world:latest' locally

unable to find image 'hello-world:latest' locally

参考这位博主的没作用[已解决]docker安装踩坑:Unable to find image ‘hello-world:latest‘ locally_unable to find image 'gitlab/gitlab-ce:13.9.2-ce.0-CSDN博客

tlc@tlc-virtual-machine:~$ docker run hello-world docker: permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Post "http://%2Fvar%2Frun%2Fdocker.sock/v1.24/containers/create": dial unix /var/run/docker.sock: connect: permission denied. See 'docker run --help'.

这个错误通常是由于当前用户没有足够的权限来访问Docker守护进程的UNIX套接字文件/var/run/docker.sock导致的。在大多数情况下,需要使用sudo或以root用户身份运行docker命令。

  1. 使用sudo运行docker命令:

    sudo docker run hello-world
  2. 将当前用户添加到docker组中,并重新登录以使更改生效:

    sudo usermod -aG docker $USER newgrp docker docker run hello-world
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/300446
推荐阅读
相关标签
  

闽ICP备14008679号