linux-为什么docker无法在3.10之前的内核上运行?

Docker通常不会在3.10之前的Linux内核上运行. (在某些情况下,它也可以在3.8内核中运行).

旧内核中缺少的新内核中有哪些功能会阻止docker在其中运行?

最佳答案

A 3.10 Linux kernel is the minimum requirement for Docker. Kernels
older than 3.10 lack some of the features required to run Docker
containers. These older versions are known to have bugs which cause
data loss and frequently panic under certain conditions.

The latest minor version (3.x.y) of the 3.10 (or a newer maintained
version) Linux kernel is recommended. Keeping the kernel up to date
with the latest minor version will ensure critical kernel bugs get
fixed.

来自:https://docs.docker.com/engine/installation/binaries

相关文章

Docker是什么Docker是 Docker.Inc 公司开源的一个基于 LXC技...
本文为原创,原始地址为:http://www.cnblogs.com/fengzheng...
镜像操作列出镜像:$ sudo docker imagesREPOSITORY TAG IMA...
本文原创,原文地址为:http://www.cnblogs.com/fengzheng/p...
在 Docker 中,如果你修改了一个容器的内容并希望将这些更改...
在Docker中,--privileged 参数给予容器内的进程几乎相同的权...