How To Install and configure Docker on Ubuntu
Before installing docker on ubuntu, if you want to learn docker basics, head over to this article – what is docker?
In this article, we will explain how to get started with Docker by installing and configuring it on a Ubuntu server with 6 simple steps and a one-liner command to install the latest docker version.
Docker supports almost all Unix and Linux distributions. Getting started with Docker is very easy. There is no complicated configuration for Docker.
TABLE OF CONTENTS
- Install Docker on Ubuntu VM
- Installing Docker From apt Repository
- Installing the latest Docker release [One Liner]
- Run Docker Commands Without Sudo
- Validate Docker Installation
- Enable Docker Remote API Access
Install Docker on Ubuntu VM
Docker package is available in the native apt repository. The installation package available in the repository will not be the latest version. If you want to install the latest release of Docker, you need to install it from the source.
Installing Docker From apt Repository
Follow the instructions give below to install docker from the apt repository.
Step 1: Update the apt cache.
sudo apt-get update -y
Step 2: Add the GPG key.
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
Step 3: Add the docker apt repository.
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
Step 4: Update the apt cache again.
sudo apt-get update -y
Step 5: Install all docker components.
sudo apt-get install docker-ce docker-ce-cli containerd.io -y
Step 6: Verify the Docker installation
sudo docker version
Installing the latest Docker release [One Liner]
If you are trying out Docker or using it for test purposes, you can use a one-liner command to install Docker.
To install the latest docker release just execute the following curl command.
curl -sSL https://get.docker.com/ | sudo sh
Run Docker Commands Without Sudo
If you try to run Docker without sudo as a normal user, you will get the following error.
Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock:
To docker commands without using sudo
, you need to add the system user to the Docker group.
Here is the command to add the current user to the docker group.
sudo usermod -aG docker $USER
Exit the current terminal and log in again to use the docker commands without sudo
.
Validate Docker Installation
To test the docker installation let’s go through some of the basic docker operations.
Pull a Docker Base Image
Now we have docker installed on the host. Let’s try to pull the latest ubuntu base image from the docker hub using the following docker command.
sudo docker pull ubuntu:latest
Verify the downloaded image using the following docker command. It will list all the downloaded and created images in the local repository.
sudo docker images
Run a Docker Container
Now we have the latest ubuntu docker image in our host. Let’s create an interactive container named “test” from the ubuntu image using the following command.
sudo docker run -i -t --name test ubuntu:latest
The above command will create an interactive container with a bash shell. You can try installing some packages in that container.
Note: You can also create a container without having an image in the local repository. When you execute the “docker run” command, docker will look for the base image in the local repository. If it doesn’t find any, docker will automatically pull down the image from the docker hub.
Type “exit” to exit the container. When you exit, the container will stop. You can view all the stopped and running containers using the following command.
sudo docker ps -a