Skip to content

Instantly share code, notes, and snippets.

View lcloss's full-sized avatar
🦊
Keep learning

Luciano Closs lcloss

🦊
Keep learning
View GitHub Profile
@lcloss
lcloss / install-docker.sh
Created January 10, 2019 21:30 — forked from dweldon/install-docker.sh
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/