Skip to content

Instantly share code, notes, and snippets.

@wongyouth
Last active July 15, 2019 13:33
Show Gist options
  • Save wongyouth/e768105b6d828750ab69b05ac57c2eae to your computer and use it in GitHub Desktop.
Save wongyouth/e768105b6d828750ab69b05ac57c2eae to your computer and use it in GitHub Desktop.
Install docker-ce into Ubuntu
# install docker-ce on ubuntu
sudo apt-get update && \
sudo apt-get 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 - && \
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable" && \
sudo apt-get update && \
sudo apt-get install docker-ce docker-ce-cli containerd.io -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment