Skip to content

Instantly share code, notes, and snippets.

@gongzili456
Last active April 3, 2019 04:17
Show Gist options
  • Save gongzili456/f27cde90b4c3a378555b85e735b1496d to your computer and use it in GitHub Desktop.
Save gongzili456/f27cde90b4c3a378555b85e735b1496d to your computer and use it in GitHub Desktop.
#/bash/sh
sudo apt update
sudo apt install -y apt-transport-https ca-certificates curl 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 bionic stable"
sudo apt update
sudo apt -y install docker-ce
sudo curl -L https://github.com/docker/compose/releases/download/1.21.2/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment