上一页 1 2 3 4 5 6 ··· 29 下一页

2019年11月28日

docker port 详解

摘要: [root@u95eau5e972u53f7 local]# docker port web 5000 //web镜像name 5000镜像内部端口 0.0.0.0:32768 阅读全文

posted @ 2019-11-28 16:35 _Jee 阅读(1097) 评论(0) 推荐(0) 编辑

docker inspect 详解

摘要: docker volume inspect volumeName //查看挂载具体详情 docker inspect imageName //查看镜像名称 阅读全文

posted @ 2019-11-28 13:23 _Jee 阅读(3784) 评论(0) 推荐(0) 编辑

docker volume 详解

只有注册用户登录后才能阅读该文。 阅读全文

posted @ 2019-11-28 13:13 _Jee 阅读(4) 评论(0) 推荐(0) 编辑

2019年11月27日

docker run 详解

摘要: docker run -it d5bdb3b31613 //-it 表示交互终端 后面是镜像ID docker run -d -p 127.0.0.1:5000:5000/udp //镜像名称 -P 随机端口映射 阅读全文

posted @ 2019-11-27 15:34 _Jee 阅读(190) 评论(0) 推荐(0) 编辑

docker history

摘要: [root@u95eau5e972u53f7 docker]# docker history nginx //查看镜像改动历史 IMAGE CREATED CREATED BY SIZE COMMENT 231d40e811cd 4 days ago /bin/sh -c #(nop) CMD ["nginx" "-g" "daemon… 0B <missing> 4 days ago /bin/ 阅读全文

posted @ 2019-11-27 13:40 _Jee 阅读(281) 评论(0) 推荐(0) 编辑

docker exec

摘要: docker ps //找到容器ID docker exec -it 612933b2778c bash //进入docker容器 root@612933b2778c:/# echo 'hello docker' > /usr/share/nginx/html/index.html //进入容器将数据重新写入到index.html 阅读全文

posted @ 2019-11-27 13:33 _Jee 阅读(189) 评论(0) 推荐(0) 编辑

docker image 指令

摘要: docker image ls -f dangling=true //查看虚悬镜像 [root@u95eau5e972u53f7 docker]# docker image prune //清空虚悬镜像 WARNING! This will remove all dangling images. Are you sure you want to continue? [y/N] y Total... 阅读全文

posted @ 2019-11-27 12:04 _Jee 阅读(349) 评论(0) 推荐(0) 编辑

docker system 指令

摘要: [root@]# docker system df //查看镜像、容器、数据卷占用空间 TYPE TOTAL ACTIVE SIZE RECLAIMABLE Images 0 0 0B ... 阅读全文

posted @ 2019-11-27 11:50 _Jee 阅读(438) 评论(0) 推荐(0) 编辑

docker yum 安装

只有注册用户登录后才能阅读该文。 阅读全文

posted @ 2019-11-27 11:16 _Jee 阅读(3) 评论(0) 推荐(0) 编辑

2019年11月22日

go 内存详解

只有注册用户登录后才能阅读该文。 阅读全文

posted @ 2019-11-22 16:35 _Jee 阅读(6) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 29 下一页

导航