Skip to content

Instantly share code, notes, and snippets.

@justinyoo
Last active October 27, 2019 12:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save justinyoo/a5b3515b4768e975ea64e8f9bbe32c6c to your computer and use it in GitHub Desktop.
Save justinyoo/a5b3515b4768e975ea64e8f9bbe32c6c to your computer and use it in GitHub Desktop.
Running Docker and Azure CLI from WSL
# Environment variables you need to set so you don't have to edit the script below.
export DOCKER_CHANNEL=stable
#export DOCKER_COMPOSE_VERSION=1.23.2
# Update the apt package index.
sudo apt-get update
# Install packages to allow apt to use a repository over HTTPS.
sudo apt-get install -y \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
# Add Docker's official GPG key.
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
# Verify the fingerprint.
sudo apt-key fingerprint 0EBFCD88
# Pick the release channel.
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
${DOCKER_CHANNEL}"
# Update the apt package index.
sudo apt-get update
# Install the latest version of Docker CE.
sudo apt-get install -y docker-ce
# Allow your user to access the Docker CLI without needing root.
sudo usermod -aG docker $USER
# Install Docker Compose into your user's home directory through PIP.
sudo apt-get install -y python python-pip
pip install --user docker-compose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment