Skip to content

Instantly share code, notes, and snippets.

@jorgedison
Created October 30, 2019 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jorgedison/c94a2007591bc73c7f2099c8c9a750d8 to your computer and use it in GitHub Desktop.
Save jorgedison/c94a2007591bc73c7f2099c8c9a750d8 to your computer and use it in GitHub Desktop.
### Unable to locate package `docker-ce` on a 64bit ubuntu
#### Ubuntu 18.10 (Cosmic)
sudo apt 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 bionic test"
#### Ubuntu 18.04 (bionic)
sudo apt 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 bionic stable"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment