Skip to content

Instantly share code, notes, and snippets.

@johnt1000
Forked from dweldon/install-docker.sh
Created November 7, 2018 18:49
Show Gist options
  • Save johnt1000/cd3d56acb6d564a9bf662c4e5f8f7aee to your computer and use it in GitHub Desktop.
Save johnt1000/cd3d56acb6d564a9bf662c4e5f8f7aee to your computer and use it in GitHub Desktop.
Install docker CE on Linux Mint 18.3
#!/usr/bin/env bash
# https://docs.docker.com/install/linux/docker-ce/ubuntu/
sudo apt-get install 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 xenial stable"
sudo apt-get update
sudo apt-get install docker-ce
# https://docs.docker.com/compose/install/
sudo curl -L https://github.com/docker/compose/releases/download/1.20.0/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
# https://docs.docker.com/install/linux/linux-postinstall/
sudo groupadd docker
sudo usermod -aG docker $USER
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment