使用docker时,我的ubuntu机器突然开始显示此警告:
WARNING: open /home/parallels/.dockercfg: permission denied
最佳答案
使用sudo运行命令时,除非通过命令行选项进行配置,否则将以系统的root用户身份运行.在您的情况下,文件权限设置为只有root用户具有对文件的读写权限,强制您使用sudo,尽管您的用户属于docker组.
原文链接:https://www.f2er.com/docker/436307.html# Change working directory
cd /home/parallels && \
# Give the root user and those belonging to the `docker` group read/write access;
# revoke all permissions for everyone else
sudo chmod u=rw,g=rw,o= .dockercfg && \
# Set the ownership of the file to the `root` user and `docker` group
sudo chown root:docker .dockercfg