我可以 运行 docker 在 linux 铸造 13 吗?
Can I Run docker on linux mint 13?
我已经尝试在我的机器上安装 docker,按照 Precise 12.04 的说明找到 here。
当我尝试时:
curl -sSL https://get.docker.com/ | sh
我得到结果:
Either your platform is not easily detectable, is not supported by this
installer script (yet - PRs welcome! [hack/install.sh]), or does not yet have
a package for Docker. Please visit the following URL for more detailed
installation instructions:
https://docs.docker.com/en/latest/installation/
我的内核:
$ uname -r
3.13.0-61-generic
您可以下载简短的安装程序脚本,看看为什么会出现此消息:
curl -sSL https://get.docker.com/ >install-docker.sh
$EDITOR install-docker.sh
这样做,我看到了 lsb_release
的几项检查。您的系统是否缺少该命令?如果是这样,see this 安装它。或者它可能没有返回“ubuntu”。如果您修复此问题,docker 安装程序脚本可能会正常工作。
如果这不起作用,您可以在 ubuntu|debian
案例(第 243 行)中为您的 OS(Mint?)硬编码一个案例,例如:
ubuntu|debian|linuxmint) # or maybe you’ll need here: *)
完成编辑(或安装 lsb_release
)后,运行 脚本以查看它是否会完成:
sudo ./install-docker.sh
我已经尝试在我的机器上安装 docker,按照 Precise 12.04 的说明找到 here。
当我尝试时:
curl -sSL https://get.docker.com/ | sh
我得到结果:
Either your platform is not easily detectable, is not supported by this installer script (yet - PRs welcome! [hack/install.sh]), or does not yet have a package for Docker. Please visit the following URL for more detailed installation instructions:
https://docs.docker.com/en/latest/installation/
我的内核:
$ uname -r
3.13.0-61-generic
您可以下载简短的安装程序脚本,看看为什么会出现此消息:
curl -sSL https://get.docker.com/ >install-docker.sh
$EDITOR install-docker.sh
这样做,我看到了 lsb_release
的几项检查。您的系统是否缺少该命令?如果是这样,see this 安装它。或者它可能没有返回“ubuntu”。如果您修复此问题,docker 安装程序脚本可能会正常工作。
如果这不起作用,您可以在 ubuntu|debian
案例(第 243 行)中为您的 OS(Mint?)硬编码一个案例,例如:
ubuntu|debian|linuxmint) # or maybe you’ll need here: *)
完成编辑(或安装 lsb_release
)后,运行 脚本以查看它是否会完成:
sudo ./install-docker.sh