Created
May 18, 2018 07:01
-
-
Save matbrgz/0108073d5ba6d4fa6064db40cf234f6a to your computer and use it in GitHub Desktop.
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
#!/bin/bash -e | |
sudo apt install ssh | |
service ssh status | |
sudo service ssh start | |
sudo systemctl enable ssh | |
sudo apt update | |
sudo apt install apt-transport-https ca-certificates curl software-properties-common | |
deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic edge | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
sudo apt install docker-ce |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment