摘要:
1、概念 2、案例 阅读全文
posted @ 2020-03-18 00:44
叫我大表哥
阅读(305)
评论(0)
推荐(0)
摘要:
一、docker私有仓库搭建 [root@szx ~]# docker pull registry # 拉取私有仓库镜像 [root@szx ~]# docker run -id --name=registry -p 5000:5000 registry # 构建容器并启动 [root@szx ~] 阅读全文
posted @ 2020-03-18 00:40
叫我大表哥
阅读(275)
评论(0)
推荐(0)
摘要:
docker部署MySQL 1、搜索MySQL镜像 # docker search mysql 2、拉取指定版本的MySQL镜像 docker pull mysql:5.6 3、创建MySQL数据卷 [root@szx ~]# mkdir mysql [root@szx ~]# cd mysql/ 阅读全文
posted @ 2020-03-18 00:39
叫我大表哥
阅读(224)
评论(0)
推荐(0)