Reputation: 147
I'm trying to install lxc-docker on a Ubuntu 64 bit vdi. Steps
I do a uname -i and I get back x86_64. I'm running my virtual box on windows 10, 64 bit. Am I missing something simple here?
Upvotes: 0
Views: 604
Reputation: 16152
Set up the repository for Ubuntu 17.10 first then install.
$ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu zesty stable"
Add Docker’s official GPG key:
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
Then install
$ sudo apt-get update && sudo apt-get -y install docker-ce
Upvotes: 0
Reputation: 79
Follow the guide as asked by @mkasberg, here's the summary from 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
Upvotes: 1