How to Install Docker and Docker Compose on Ubuntu Linux

|

|

This post provides a comprehensive guide on installing Docker and Docker Compose on Ubuntu 16.04/18.04 LTS systems. Docker, a popular OS-level virtualization software, can run software packages as containers. Docker Compose enables the configuration and running of multi-container Docker applications. The guide outlines steps for adding Docker’s official repository to Ubuntu, installing Docker, removing old…

This article explains how to install Docket and Docker Compose on Ubuntu Linux.

Docker software allows visualization at the operating system level. Unlike VirtualBox and VMware Workstation, you run virtual applications as containers. Docker Inc developed Docker and runs software packages as containers, making building applications quickly shared and running anywhere.

Docker Compose is a tool for defining and running multi-container Docker applications. It uses YAML files to configure application services, then with a single command using the definitions in the file to start these services based on the configurations.

Installing Docker and Docker Compose on Ubuntu Linux allows you to run virtual applications as containers, making building applications quickly shared and running them anywhere.

Ubuntu Linux makes it easier to build an environment to build Docker containers and test them efficiently.

Add Docker Official Repository

Docker has two editions:  The Enterprise Edition (EE) and the Community Edition (CE).

For this tutorial, we will install the community edition of Docker.

If you always want to get the latest version of Docker on Ubuntu automatically, you must add its official repository to the Ubuntu system. To do that, run the commands below to install prerequisite packages.

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

Next, run the commands below to download and install Docker’s official GPG key. The key validates packages installed from Docker’s repository, ensuring they’re trusted.

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

You should see an output shown below:

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

Now that the official GPG key has been installed run the commands below to add its stable repository to Ubuntu. For example, to add the nightly or test repository, add the word nightly or test (or both) after the word stable in the commands below.

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

At this point, Docker’s official GPG and repository should be installed on Ubuntu.

For those who currently have older versions of Docker, run the commands below to remove them.

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

When you have removed all previous versions of Docker, run the commands below to install the latest and current stable version of Docker.

To install a specific version of Docker, run the apt-cache command. Then, select the version to install.

apt-cache madison docker-ce

Output:
docker-ce | 5:18.09.5~3-0~ubuntu-bionic | https://download.docker.com/linux/ubuntu bionic/stable amd64 Packages
docker-ce | 5:18.09.4~3-0~ubuntu-bionic | https://download.docker.com/linux/ubuntu bionic/stable amd64 Packages
docker-ce | 5:18.09.3~3-0~ubuntu-bionic | https://download.docker.com/linux/ubuntu bionic/stable amd64 Packages
docker-ce | 5:18.09.2~3-0~ubuntu-bionic | https://download.docker.com/linux/ubuntu bionic/stable amd64 Packages
.

Now, to install a specific version, run the commands below with the version you wish to install

sudo apt-get install docker-ce=5:18.09.5~3-0~ubuntu-bionic docker-ce-cli=5:18.09.5~3-0~ubuntu-bionic containerd.io

If you want the latest version without specifying the above, run the below commands. The command below will always install the highest possible version.

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

That should install Docker software on Ubuntu.

Verify that Docker CE is installed correctly by running the hello-world image. Run the commands below:

sudo docker run hello-world

You should see a similar line below:

Output:
Hello from Docker!
This message shows that your installation appears to be working correctly.

The Docker is installed correctly!

Install Docker Compose

You can download the Docker Compose binary on Ubuntu Linux from the Compose repository release page on GitHub.

To install it, run the commands below to download version 1.24.0. As of this writing, this is the current version.

sudo curl -L "https://github.com/docker/compose/releases/download/1.24.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose

To install a different version of Compose, substitute 1.24.0 with the one you want to use.

After downloading it, run the commands below to apply executable permissions to the binary file and create a symbolic link to /usr/binary

sudo chmod +x /usr/local/bin/docker-compose
sudo ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose

That should get Docker Compose working. To test, run the commands below:

docker-compose --version

You should see a similar output as below:

Output:
docker-compose version 1.24.0, build 0aa59064

That’s it!

To run Docker as a non-root user, add your user account to Docker’s group by running the commands below:

sudo usermod -aG docker $USER

Log out and back in, and you should be able to run Docker with your standard account.

Congratulations! You have learned how to install Docker and Docker Compose on Ubuntu 16.04 /  18.04 LTS systems.

You may also like the post below:

Like this:



One response to “How to Install Docker and Docker Compose on Ubuntu Linux”

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.