Created
October 8, 2019 14:40
-
-
Save EmberRed/1a300b3963c85c66c81a82f7c6aa3a71 to your computer and use it in GitHub Desktop.
Installing last version of docker & docker-compose (Ubuntu/Debian, CentOS)
This file contains 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
### docker-CE | |
cd /tmp | |
curl -fsSL https://get.docker.com -o get-docker.sh | |
sudo sh get-docker.sh | |
sudo usermod -aG docker $USER | |
rm get-docker.sh | |
### docker-compose | |
sudo curl -L https://github.com/docker/compose/releases/download/1.24.1/docker-compose-Linux-x86_64 -o /usr/local/bin/docker-compose | |
sudo chmod +x /usr/local/bin/docker-compose |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment