Last active
November 15, 2019 22:03
-
-
Save RodrigoCMoraes/1a4bcd49ba36e0af1762836a4ebbdf40 to your computer and use it in GitHub Desktop.
Install docker Ubuntu 18.04
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
wget http://get.docker.com -O docker-install.sh | |
sudo chmod +x docker-install.sh | |
./docker-install.sh | |
sudo groupadd docker | |
sudo usermod -aG docker $USER | |
sudo systemctl enable docker | |
sudo apt-get install -y install docker-compose | |
sudo reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment