ubuntu download docker code example

Example 1: how to install docker ubuntu

sudo apt-get update
sudo apt-get upgrade
sudo apt install docker.io
systemctl start docker
systemctl enable docker
docker --version

Example 2: docker install ubuntu

$ sudo apt-get update

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

Example 3: install docker machine ubuntu

$ curl -L https://github.com/docker/machine/releases/download/v0.16.0/docker-machine-`uname -s`-`uname -m` >/tmp/docker-machine &&
chmod +x /tmp/docker-machine &&
sudo cp /tmp/docker-machine /usr/local/bin/docker-machine

Example 4: install docker linux

sudo apt-get install -y linux-image-generic-lts-trusty linux-headers-generic-lts-trusty

Example 5: install docker on ubuntu 18.04

sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"

Example 6: install docker on ubuntu

sudo apt update
sudo apt upgrade