Docker
DPnice
这个作者很懒,什么都没留下…
展开
-
docker 启动报错:Error starting daemon: SELinux is not supported with the overlay2 graph ...false)
环境:centos7 命令:systemctl start docker systemctl status docker -l 报错:Error starting daemon: SELinux is not supported with the overlay2 graph driver on this kernel. Either boot into a newer ...转载 2018-07-20 11:24:47 · 508 阅读 · 0 评论 -
Docker安装MySQL
yum -y install docker mv /var/lib/docker /home/docker ln -s /home/docker/ /var/lib/docker service docker start systemctl enable docker 加速器(docker login daocloud.io) curl -sSL https://get.daocloud.io...原创 2018-07-20 11:29:15 · 269 阅读 · 0 评论 -
Docker常用命令
Docker 常用命令 操作容器 启动容器 启动容器并启动bash(交互方式): $docker run -i -t <image_name/continar_id> /bin/bash 启动容器以后台方式运行(更通用的方式): $docker run -d -it image_name ps:这里的 image_name 包含了tag:hello.demo.kdemo...转载 2018-08-14 17:29:12 · 249 阅读 · 0 评论