install docker on ubuntu with code example

Example 1: ubuntu install docker

sudo usermod -aG docker ${USER}

Example 2: install docker on ubuntu with

$ sudo add-apt-repository \
   "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
   $(lsb_release -cs) \
   stable"

Example 3: install docker on ubuntu with

$ sudo apt-get update

$ sudo apt-get install \
    apt-transport-https \
    ca-certificates \
    curl \
    gnupg-agent \
    software-properties-common

Example 4: install docker on ubuntu with

$ sudo apt-key fingerprint 0EBFCD88

pub   rsa4096 2017-02-22 [SCEA]
      9DC8 5822 9FC7 DD38 854A  E2D8 8D81 803C 0EBF CD88
uid           [ unknown] Docker Release (CE deb) <[email protected]>
sub   rsa4096 2017-02-22 [S]

Example 5: apt install docker

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

Tags:

Misc Example