1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-20 22:17:09 +08:00

Update Docker.md

typo
This commit is contained in:
anaer 2021-09-10 10:48:02 +08:00 committed by GitHub
parent ac930c32c1
commit c9ea539007
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,7 @@
### 1.2 图解物理机,虚拟机与容器
关于虚拟机与容器的对比在后面会详细介绍到,这里只是通过网上的图片加深大家对于物理机、虚拟机与容器这三者的理解(下面的图片来源网络)。
关于虚拟机与容器的对比在后面会详细介绍到,这里只是通过网上的图片加深大家对于物理机、虚拟机与容器这三者的理解(下面的图片来源网络)。
**物理机:**
@ -233,7 +233,7 @@ mysql 5.7 f6509bac4980 3 months ago
通过 IMAGE ID 或者 REPOSITORY 名字即可删除
```shell
docker rmi f6509bac4980 # 或者 docker rmim mysql
docker rmi f6509bac4980 # 或者 docker rmi mysql
```
## 六 Build Ship and Run
@ -276,7 +276,7 @@ LXC 技术主要是借助 Linux 内核中提供的 CGroup 功能和 name space
- **CGroup 是 Control Groups 的缩写,是 Linux 内核提供的一种可以限制、记录、隔离进程组 (process groups) 所使用的物力资源 (如 cpu memory i/o 等等) 的机制。**
(以上关于 CGroup 介绍内容来自 https://www.ibm.com/developerworks/cn/linux/1506_cgroup/index.html ,更多关于 CGroup 的内容可以查看这篇文章 )。
(以上关于 CGroup 介绍内容来自 https://www.ibm.com/developerworks/cn/linux/1506_cgroup/index.html ,更多关于 CGroup 的内容可以查看这篇文章 )。
**cgroup 和 namespace 两者对比:**