Skip to content

Commit

Permalink
docker network commit
Browse files Browse the repository at this point in the history
  • Loading branch information
wenbin8 committed Dec 17, 2019
1 parent 3250602 commit 8b39d42
Show file tree
Hide file tree
Showing 44 changed files with 521 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,11 +191,11 @@ Mycat

##### Docker

- [x] [Vagrant创建虚拟机,安装Docker](https://github.com/wenbin8/doc/blob/master/分布式/CloudNative/Docker/Vagrant创建虚拟机,安装Docker.md)
- [x] [Docker基础](https://www.runoob.com/docker/docker-tutorial.html)
- [x] [Docker命令大全](https://www.runoob.com/docker/docker-command-manual.html)
- [x] [理解docker实现原理(Namespaces,CGroups和联合文件系统)](http://dockone.io/article/2941)
- [x] 镜像和容器
他山之石:([Docker基础](https://www.runoob.com/docker/docker-tutorial.html)[Docker命令大全](https://www.runoob.com/docker/docker-command-manual.html)[理解docker实现原理(Namespaces,CGroups和联合文件系统)](http://dockone.io/article/2941)

- [x] [Docker基础及安装](https://github.com/wenbin8/doc/blob/master/分布式/CloudNative/Docker/01-Docker基础及安装.md)
- [x] [镜像和容器](https://github.com/wenbin8/doc/blob/master/分布式/CloudNative/Docker/02-镜像和容器.md)
- [ ] Docker网络

##### Kubernetes
- [ ] docker Compose
Expand Down
2 changes: 2 additions & 0 deletions markdown/博客连接.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@

[布隆过滤器](https://www.cnblogs.com/CodeBear/p/10911177.html)

[Linux网络知识](https://www.cnblogs.com/chensiqiqi/p/6503278.html)

Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
# Docker基础及安装

## Docker的基本概念

镜像(Image)、容器(Container)、仓库(Repository)、网络(network)、数据卷(data volumes),是Docker中最基本也是最核心的概念,对这些概念的掌握与理解,是学习Docker的关键。



### Docker的架构

Docker跟大部分服务端软件一样(如MySQL),都是使用C/S的架构模型,也就是通过客户端调用服务器,只是我们现在刚好服务端和客户端都在同一台机器上而已。

![image-20191217161417888](assets/image-20191217161417888.png)

### Docker Engine

Docker Server为客户端提供了容器、镜像、数据卷、网络管理等功能,其实,这些功能都是由Docker Engine来实现的。

1. dockerd:服务器守护进程。
2. Client docker Cli:命令行接口
3. REST API:除了cli命令行接口,也可以通过REST API调用Docker

<img src="assets/image-20191217161159382.png" alt="image-20191217161159382" style="zoom:50%;" />

# Vagrant创建虚拟机,安装Docker

## 1.5.1 在Win10上准备centos7
Expand Down
Loading

0 comments on commit 8b39d42

Please sign in to comment.