我正在尝试在Ubuntu 64位vdi上安装lxc-docker。 步骤
我做了一个uname -i,然后我回到了x86_64。我在Windows 10,64位上运行我的虚拟盒子。我在这里错过了一些简单的东西吗?
答案 0 :(得分:1)
按照@mkasberg提出的指南,这是docker url
的摘要sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
sudo apt-get install docker-ce
答案 1 :(得分:0)
首先为Ubuntu 17.10设置存储库然后安装。
$ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu zesty stable"
添加Docker的官方GPG密钥:
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
然后安装
$ sudo apt-get update && sudo apt-get -y install docker-ce