如何在具有Ubuntu 12.04的32位机器上安装Docker?

我已经按照docker installation doc将它安装在我的机器上,这是一台运行Ubuntu 12.04的32位机器

这一步

$sudo apt-get install docker-engine

没说

E: Unable to locate package docker-engine

应该已经安装好了吧?

我也知道,Docker目前只支持64位平台.

$wget -qO- https://get.docker.io/ | sh
Error: you are not using a 64bit platform.
Docker currently only supports 64bit platforms.

有没有办法安装它并使其在32位机器上工作?

最佳答案
根据先决条件:

Docker requires a 64-bit installation regardless of your Ubuntu version. Additionally,your kernel must be 3.10 at minimum. The latest 3.10 minor version or a newer maintained version are also acceptable.

您将无法将Docker安装到32位平台上.

相关文章

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