
Docker
_凡尘
make it possible
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
docker学习笔记
命令:systemctl start docker ----- 启动dockers 命令:docker images -----列出本地镜像 命令:docker search + 镜像名 ----- 在网络上搜索镜像 命令:docker pull + 镜像名 ----- 下载网络上的镜像 命令:docker start + 容器名称----- 运行已经存在的容器 命令:doc...原创 2019-08-15 12:27:57 · 130 阅读 · 0 评论 -
docker启动成功,确无法进入docker 报错信息 exec user process caused "permission denied"
1.docker启动成功无其他报错 2.dockerps-a查看容器id 3.dockerlogsid查看具体报错 standard_init_linux.go :178: execuser process caused"permissiondenied" 解决方法: 关闭selinux 1、临时关闭selinux: setenforce 0 2...转载 2019-07-27 19:52:01 · 3543 阅读 · 0 评论 -
Docker入门
一.如何安装docker [root@localhost ~]# yum install docker 选择 y 安装完docker之后运行 docker -v 查看版本号 看到这个说明安装成功原创 2019-08-19 22:35:21 · 186 阅读 · 0 评论