Skip to content

Instantly share code, notes, and snippets.

@Ujang360
Created July 26, 2019 09:59
Show Gist options
  • Save Ujang360/aff76660cfb9c1fdc08dffef37d4a6fa to your computer and use it in GitHub Desktop.
Save Ujang360/aff76660cfb9c1fdc08dffef37d4a6fa to your computer and use it in GitHub Desktop.
Install Docker in Ubuntu 19.04
#!bin/sh
cd ~
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 edge"
apt-cache policy docker-ce
sudo apt-get install -y docker-ce
sudo usermod -aG docker ${USER}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment