登录root用户创建docker组
groupadd docker
将当前普通用户加入docker组
gpasswd -a ${USER} docker
重新启动docker服务(下面是CentOS7的命令)
systemctl restart docker