Skip to content

Instantly share code, notes, and snippets.

View kriskross2893's full-sized avatar

Kris kriskross2893

  • MessageMedia
  • Davao City, Philippines
View GitHub Profile
@kriskross2893
kriskross2893 / install-docker.sh
Last active March 25, 2021 06:54 — forked from sethbergman/install-docker.sh
Install Docker CE on Linux Mint 19
#!/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 bionic stable"
echo -e "\ndeb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable" | sudo tee -a /etc/apt/sources.list
sudo apt-get update
sudo apt-get install docker-ce