Tag: Docker
Oct 17, 2018

Reference meterials.

See Detail


Dec 19, 2020

Dec 19, 2020

When it comes to building Docker containers, you should always strive for smaller images. Images that share layers and are smaller in size are quicker to transfer and deploy.

But how do you keep the size under control when every RUN statement creates a new layer, and you need intermediate artefacts before the image is ready?

See Detail


Oct 30, 2020

Sep 27, 2018

Cgroups, namespaces, 以及其他: 容器是由什么构成的?

DockerCon EU 的一场分享.

See Detail


Sep 27, 2018

准确来说 "容器 (container)" 这个词并不代表任何含义. 它基本上只是 Linux 内核提供的一些新特性 ("namespaces" 和 "cgroups"), 它们使你得以将进程互相隔离. 当你在使用这些特性的时候, 你可以把它们称为 "容器". 这些特性好像让你觉得你创建了一些虚拟机, 虽然它们实际上根本不是虚拟机, 它们只是同一个 Linux 内核中运行的一些进程而已. 让我们仔细看看!

See Detail