Skip to content

Instantly share code, notes, and snippets.

@wheelq
Last active March 6, 2019 11:24
Show Gist options
  • Save wheelq/8ff1bdb472df226ad27c0a11ee625323 to your computer and use it in GitHub Desktop.
Save wheelq/8ff1bdb472df226ad27c0a11ee625323 to your computer and use it in GitHub Desktop.
Docker install- Oneliner for Ubuntu
#!/bin/sh
#https://docs.docker.com/install/linux/docker-ce/ubuntu/
#Author: Michal Wiczynski <wheel.q@gmail.com>
sudo apt-get update
sudo apt-get upgrade -y
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 apt-key fingerprint 0EBFCD88
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 -y docker-ce docker-ce-cli containerd.io
# test
sudo docker run --rm hello-world
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment