Tag: Docker
17 Oct 2018 23:25 +0000

Reference meterials.

See Detail


19 Dec 2020 16:47 +0000

19 Dec 2020 14:13 +0000

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


30 Oct 2020 14:26 +0000

27 Sep 2018 16:02 +0000

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

DockerCon EU 的一场分享.

See Detail


27 Sep 2018 11:25 +0000

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

See Detail