install docker ubuntu code example
Example 1: install docker ubuntu
sudo apt install docker.io
Example 2: install docker ubuntu
# To install docker in ubuntu, run the following in your terminal:
sudo apt-get update
sudo apt install -y apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository -y "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
sudo apt install docker-ce
Example 3: install docker ubuntu
$ curl -fsSL https://get.docker.com -o get-docker.sh
$ sudo sh get-docker.sh
Example 4: install docker ubuntu
sudo apt install docker.io -y
Example 5: install docker ubuntu
$ sudo apt-get remove docker docker-engine docker.io containerd runc
Example 6: install docker ubuntu
$ sudo apt-get remove docker docker-engine docker.io containerd runc
Example 7: install docker ubuntu
$ sudo apt-get update
$ sudo apt-get install docker-ce docker-ce-cli containerd.io
Example 8: install docker ubuntu
$ 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
Example 9: install docker ubuntu
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
Example 10: install docker ubuntu
$ sudo apt-get update
$ sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
gnupg \
lsb-release