Skip to content

Instantly share code, notes, and snippets.

@iliion
Last active June 8, 2021 10:26
Show Gist options
  • Save iliion/bcd04235efc69e47f46dadefe013ea5e to your computer and use it in GitHub Desktop.
Save iliion/bcd04235efc69e47f46dadefe013ea5e to your computer and use it in GitHub Desktop.
Install Docker { Ubuntu }

Uninstall previous versions

sudo apt-get remove docker docker-engine docker.io containerd runc

INSTALL DOCKER

sudo apt-get update -y
sudo apt-get -y install \
    apt-transport-https \ 
    ca-certificates \
    curl \
    gnupg \
    lsb-release

Add Docker’s official GPG key

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg

Set up the stable repository

echo \
  "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
  $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null

Install DOCKER ENGINE

sudo apt-get update -y
sudo apt-get install -y docker-ce docker-ce-cli containerd.io

List the versions available in your repo

apt-cache madison docker-ce`

Select Version

sudo apt-get install docker-ce=<VERSION_STRING> docker-ce-cli=<VERSION_STRING> containerd.io

Test

sudo docker run hello-world
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment