一.概述 普通用户执行命令:docker ps报错,具体信息如下: 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.38/containers/create: dial unix /var/run/docker.sock: connec
安装Docker yum install docker 本文使用的系统是centos7,ubuntu使用以下命令 sudo apt-get update sudo apt-get install docker-engine 如果报了以下错误,是因为yum被其它进程使用了 Another app is currently holding the yum lock; waiting for it to exit... The other application is: PackageKit Memo
随着微服务的流行,Docker越来越流行,正如它的理念"Build, Ship, and Run Any App, Anywhere"一样,Docker提供的容器隔离技术使得开发人员不用再去理清server里的各种环境配置,轻松把应用运行起来.我们只需把运行环境的配置和应用封装在Docker的镜像(image),然后使用Docker运行这个镜像即可.Docker可以说是给所有开发人员的一个福利包,学习和使用Docker是所有开发人员的标配技能. 安装Docker yum install