Skip to content

Instantly share code, notes, and snippets.

@ciphertxt
Last active August 5, 2019 15:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ciphertxt/89686aa86c33f4f421188a395d79529b to your computer and use it in GitHub Desktop.
Save ciphertxt/89686aa86c33f4f421188a395d79529b to your computer and use it in GitHub Desktop.
#!/bin/bash
# Update the package index
sudo apt-get update
# Install the latest version of docker
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
# add current user to the docker group
sudo usermod -aG docker $USER
# Install the Azure CLI
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment