Skip to content

Instantly share code, notes, and snippets.

@hrittikhere
Last active July 2, 2022 14:17
Show Gist options
  • Save hrittikhere/3117497bfaf1736a144b0a3d9463c807 to your computer and use it in GitHub Desktop.
Save hrittikhere/3117497bfaf1736a144b0a3d9463c807 to your computer and use it in GitHub Desktop.
# Update Base System
sudo apt update -y
sudo apt upgrade -y
# Install Docker
echo -e "\e[1;31m Installing Docker \e[0m"
curl -fsSL https://get.docker.com -o get-docker.sh
sh get-docker.sh
sudo usermod -aG docker $USER
rm get-docker.sh
curl -fsSL https://tailscale.com/install.sh | sh
sudo tailscale up --ssh
sudo reboot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment