Docker-Internals-List
Docker Internals List | Docker 内部原理资料索引
Overview
-
2018-Docker 底层技术: Docker 容器技术已经发展了好些年,在很多项目都有应用,线上运行也很稳定。整理了部分Docker 的学习笔记以及新版本特性,对Docker 感兴趣的同学可以看看,之前整理过的Linux namespace 可以见之前的博文。 -
Docker 核心技术与实现原理: 作为在生产环境中广泛应用的产品,Docker 有着非常成熟的社区以及大量的使用者,代码库中的内容也变得非常庞大。 -
2021- 万字长文:彻底搞懂容器镜像构建: 我将在这篇文章中深入Docker 的源码,与你聊聊镜像构建的原理。
cgroup
2017-Docker 容器基础技术:linux cgroup 简介: Linux cgroups 的全称是Linux Control Groups ,它是Linux 内核的特性,主要作用是限制、记录和隔离进程组(process groups)使用的物理资源(cpu、memory、IO 等) 。
网络
-
2017- 理解Docker 容器网络之Linux Network Namespace : 在本文中我们将尝试理解Linux Network Namespace 及相关Linux 内核网络设备的概念,并手工模拟Docker 容器网络模型的部分实现,包括单机容器网络中的容器与主机连通、容器。 -
2019- 浅聊几种主流Docker 网络的实现原理: 本文接下来将详细介绍目前主流容器网络的实现原理。 -
2020-Container networking is simple: Luckily, we’ve been looking under the hood of the containerization technology for quite some time already and even managed to uncover that containers are just isolated and restricted Linux processes, that images aren’t really needed to run containers, and on the contrary - to build an image we need to run some containers.
存储
-
2015- 深入分析Docker 镜像原理: 分享内容包含两个部分:1.Docker 镜像的基本知识;2.Dockerfile、Docker 镜像与Docker 容器的关系。 -
2018-What’s in a Docker image?: Not only do I want to give you the answer, but I want to show you how I got there.