摘要: Ngrok http://www.ngrok.cc https://www.bilibili.com/video/BV17K4y187A2 1. 注册账号 2. 购买服务0元 3. 下载工具,本地连接 客户端的隧道id即可开通 阅读全文
posted @ 2020-10-19 22:25 pigeast 阅读(0) 评论(0) 推荐(0) 编辑
摘要: Docker Compose Docker Compose 可以轻松高效的管理容器,定义运行多个容器 定义、运行多个容器 YAML file 配置文件 single command 三个步骤: 定义一个Dockefile;保证我们项目可以在任何地方运行 定义一个服务service,在docker-c 阅读全文
posted @ 2020-10-19 20:52 pigeast 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 实战Redis集群 # 创建一个自定义的网络名词叫redis docker network create --subnet 172.18.0.0/16 --gateway 172.18.0.1 redis # 宿主机挂载文件 for port in $(seq 1 6); do mkdir -p / 阅读全文
posted @ 2020-10-19 16:09 pigeast 阅读(106) 评论(0) 推荐(0) 编辑
摘要: Docker 网络 理解Docker0 # veth-pair 就是一对虚拟设备接口,是成对出现的,一段连接协议, # Openstack docker 容器连接,OVS连接,都是使用evth-pair技术 # Docker中所有的网络接口都是虚拟的,虚拟的转发效率高!! # Docker使用lin 阅读全文
posted @ 2020-10-19 15:11 pigeast 阅读(144) 评论(0) 推荐(0) 编辑