Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save vestjoe/22bac12cd13b544069bcb85213e755b4 to your computer and use it in GitHub Desktop.
Save vestjoe/22bac12cd13b544069bcb85213e755b4 to your computer and use it in GitHub Desktop.

Docker-Compose

Reference: https://www.digitalocean.com/community/tutorials/how-to-install-docker-compose-on-ubuntu-16-04

sudo curl -L https://github.com/docker/compose/releases/download/1.18.0/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose

Docker-CE

Reference: https://www.digitalocean.com/community/tutorials/how-to-install-docker-compose-on-ubuntu-16-04

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 $(lsb_release -cs) stable"
sudo apt-get update
sudo apt-get install -y docker-ce
sudo systemctl status docker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment