Docker installation on Ubuntu 20.04 [duplicate]

I would like to build and run Docker containers on Ubuntu 16.04 LTS. How do I install Docker?


Solution 1:

Docker comes in two flavours: The Comunity Edition (CE) and the Enterprise Edition (EE). See this question for the differences. Just take Docker CE if you don't know which to take.

There are two ways of installing it (thank you, Katu and Suor!). The official docker way is a bit more recent.

(A) Official Ubuntu Repositories

$ sudo apt-get install docker.io

In the past this way was discouraged as the docker package was super outdated. The universe sources are fairly recent now.

(B) Official Docker Way

The Ubuntu installation instructions list all you need in detail, but in most cases it boils down to:

(1) Set up the docker repository

sudo apt-get update
sudo apt-get install 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 "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"

(2) Install Docker CE

sudo apt-get update
sudo apt-get install docker-ce

(3) Verify the installation

sudo docker run hello-world

The latest version can be found here. It was 18.06 in November 2018. This version is available in the sources from above, whereas the default Ubuntu package sources only contain Docker 1.5 (source). You can find changes in the docker release notes. Version 1.5 is so old that I could not find out how old it is.

Solution 2:

To install the Ubuntu repository version

sudo apt install docker.io

Check the version with

docker --version

You may still want to do the post-install steps. Thanks @wisbucky

Solution 3:

Easiest way to install docker on Ubuntu using following command that you can get from the https://get.docker.com/

This script is meant for quick & easy install via:

$ curl -fsSL https://get.docker.com | sh

or

wget -qO- https://get.docker.com/ | sh

For test builds (ie. release candidates):

$ curl -fsSL https://test.docker.com | sh

or

 wget -qO- https://test.docker.com/ | sh

For rc build with experimental feature:

$ curl -fsSL https://experimental.docker.com | sh

or

 wget -qO- https://experimental.docker.com/ | sh

Solution 4:

To install the community edition, add the GPG key

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

Add the docker repository

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

sudo apt-get update

To make sure, you're going to install docker from Docker repo,

apt-cache policy docker-ce

Now install docker,

sudo apt-get install -y docker-ce

It would be running by default, but you can check the status

sudo systemctl status docker

Solution 5:

BTW, for Linux Mint (which is based on ubuntu), need to change the release name by hand, after adding the repository.

Sub steps:

  • sudo vi /etc/apt/sources.list.d/additional-repositories.list
  • According to underling ubuntu versions:
    • Ubuntu 16.04
      Change sarah or other name, to xenial.
    • Ubuntu 18.04
      Change tara or other name, to bionic.