WARNING: Access to the remote API on a privileged Docker daemon is equivalent to root access on the host. Refer to the 'Docker daemon attack surface' documentation for details: https://docs.docker.com/go/attack-surface/ 这个提示什么意思?
时间: 2024-04-16 07:29:47 浏览: 154
Docker–Docker Remote API 访问控制
这个警告意味着在特权模式下访问远程 Docker 守护程序的API等同于在主机上拥有 root 访问权限。在 Docker 守护程序的攻击面文档中有详细的说明,您可以在这里找到:https://docs.docker.com/go/attack-surface/
简单来说,特权模式下的 Docker 守护程序具有更高的系统权限,可以执行敏感操作和访问主机上的资源。因此,访问远程 Docker API 需要谨慎,确保只有受信任的用户或系统可以进行访问,并且必须采取适当的安全措施来保护宿主机免受潜在的攻击风险。
阅读全文