根据这个关于 docker的问题的答案,以非 root 身份运行它就像将非 root 用户名添加到docker
组中一样简单,然后注销并重新登录。果然,当我将它sudo
用于hello-world
图像时进展顺利。但是对于另一个名为的测试图像,whalefortune
我仍然得到access denied
错误——见下文。
通常不再可能以非 root 身份运行 docker 吗?我使用的是 Ubuntu 19.04,它是比示例更新的版本,并且有人提到以非 root 身份运行 docker 可能存在安全漏洞。
我的想法是以普通用户身份运行 nvidia-docker,这可能(甚至是一个好主意)吗?
$ sudo docker run --rm hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
1b930d010525: Pull complete
Digest: sha256:6540fc08ee6e6b7b63468dc3317e3303aae178cb8a45ed3123180328bcc1d20f
Status: Downloaded newer image for hello-world:latest
Hello from Docker!
This message shows that your installation appears to be working correctly.
To generate this message, Docker took the following steps:
1. The Docker client contacted the Docker daemon.
2. The Docker daemon pulled the "hello-world" image from the Docker Hub. (amd64)
3. The Docker daemon created a new container from that image which runs the executable that produces the output you are currently reading.
4. The Docker daemon streamed that output to the Docker client, which sent it
to your terminal.
To try something more ambitious, you can run an Ubuntu container with: $ docker run -it ubuntu bash
Share images, automate workflows, and more with a free Docker ID:
https://hub.docker.com/
For more examples and ideas, visit:
https://docs.docker.com/get-started/
$ docker run --rm dbkdoc/whalefortune
docker: Got permission denied while trying to connect to the
Docker daemon socket at unix:///var/run/docker.sock:
Post http://%2Fvar%2Frun%2Fdocker.sock/v1.40/containers/create:
dial unix /var/run/docker.sock: connect: permission denied.
See 'docker run --help'.
警告:
docker 组授予与 root 用户等效的权限。有关这如何影响系统安全性的详细信息,请参阅Docker Daemon Attack Surface。
如果您仍然想在没有 docker 的情况下运行
sudo
:如果 docker 组不存在,请添加它:
将连接的用户“$USER”添加到 docker 组。如果您不想使用当前用户,请更改用户名以匹配您的首选用户:
执行 a
newgrp docker
或注销/登录以激活对组的更改(如果在虚拟机上进行测试,可能需要重新启动虚拟机才能使更改生效)。您可以使用
检查是否可以在没有 sudo 的情况下运行 docker。
PS:
如果您
sudo
在将用户添加到docker
组之前最初使用 Docker CLI 命令运行,您可能会看到以下错误,这表明您的~/.docker/
目录是由于sudo
命令而使用不正确的权限创建的。要解决此问题,请删除
~/.docker/
目录(它会自动重新创建,但会丢失任何自定义设置),或使用以下命令更改其所有权和权限:完成后,您需要重新启动会话/重新登录
sudo su $USER
才能使用没有sudo
.资料来源: Docker 文档