Skip to content

Instantly share code, notes, and snippets.

@mmm
Last active March 23, 2018 00:40
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 mmm/12b420ff537914d013533ee5e3b15b81 to your computer and use it in GitHub Desktop.
Save mmm/12b420ff537914d013533ee5e3b15b81 to your computer and use it in GitHub Desktop.
#!/bin/bash
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
cat > /etc/apt/sources.list.d/docker.list <<EOM
deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable
EOM
apt-get -qqy update
apt-get -qqy install docker-ce docker-compose
systemctl enable docker
#systemctl start docker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment