Created
April 1, 2019 01:52
-
-
Save davidpp/a7e1c75b2584c7a6fc1a8fd4be258848 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
#!/bin/bash | |
######################## | |
### DOCKER & LANDO ### | |
######################## | |
sudo apt-get update | |
sudo apt-get install \ | |
apt-transport-https \ | |
ca-certificates \ | |
curl \ | |
gnupg-agent \ | |
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 docker-ce-cli containerd.io | |
sudo groupadd docker | |
sudo usermod -aG docker $USER | |
sudo systemctl restart docker | |
wget https://github.com/lando/lando/releases/download/v3.0.0-rc.14/lando-v3.0.0-rc.14.deb | |
sudo dpkg -i lando-v3.0.0-rc.14.deb | |
######################## | |
### Chrome ### | |
######################## | |
#wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | |
#sudo dpkg -i google-chrome-stable_current_amd64.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment