Skip to content

Instantly share code, notes, and snippets.

@roycyt
Last active February 10, 2020 09:03
Show Gist options
  • Save roycyt/ec5e5469e25bd81fff5450c35eff417f to your computer and use it in GitHub Desktop.
Save roycyt/ec5e5469e25bd81fff5450c35eff417f to your computer and use it in GitHub Desktop.
Install Docker CE on the Ubuntu
# https://docs.docker.com/install/linux/docker-ce/ubuntu/
apt update
apt install -y \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
apt update
apt install -y docker-ce docker-ce-cli containerd.io
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment