docker常用操作

解决无法在mac电脑创建的centos7容器中启动docker问题

本地docker安装过程省略
本地通过docker下载centos7镜像来模拟环境大家 docker中获取centos7
官网查看centos镜像地址
docker pull centos:centos7
特权模式启动docker,不使用特权模式启动的话会导致进入centos7镜像中有些命令无法执行
docker run -itd --name centos7 --privileged centos:centos7 init
进入容器内部
docker exec -it 容器id bash
sudo yum update
在docker的centos内安装docker
yum install docker
执行docker version出现
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running
修改配置/etc/docker/daemon.json文件为如下内容
{ "registry-mirrors": ["https://registry.docker-cn.com"] }
保存重新启动docker
systemctl restart docker.service
启动不成功有一下几个可能
网络问题
yum install -y iptables-services iptables-devel.x86_64 iptables.x86_64
开机自启
systemctl enable iptables
启动
systemctl start iptables
查看状态
systemctl status iptables
如果是版本不符合’overlay2’ is not supported over overlayfs
修改 vim /etc/sysconfig/docker-storage
DOCKER_STORAGE_OPTIONS="--storage-driver devicemapper "
重启docker
systemctl restart docker.service

你可能感兴趣的:(docker,容器,centos,mac)