Created
July 27, 2018 16:09
-
-
Save dheffx/92a246594afec48c0cbd89ab7bf0dc9b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Latest docker | |
sudo apt-get remove --purge docker docker-engine docker.io | |
sudo add-apt-repository \ | |
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \ | |
$(lsb_release -cs) \ | |
stable" | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
sudo apt-get update | |
sudo apt-get install docker-ce | |
## Latest docker-compose | |
sudo curl -L https://github.com/docker/compose/releases/download/1.22.0/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose | |
sudo chmod +x /usr/local/bin/docker-compose | |
## as of 2018-07-27 this should install these versions: | |
## $ docker --version | |
## Docker version 18.06.0-ce, build 0ffa825 | |
## $ docker-compose --version | |
## docker-compose version 1.22.0, build f46880fe |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment