Installing Docker on Ubuntu 22.04
Here's a step-by-step guide on installing Docker on Ubuntu Jammy 22.04 by following
the official documentation.
- Updating package database:
sudo apt update
- Installing useful packages for the subsequent installation steps (may already be present):
sudo apt-get install ca-certificates curl gnupg lsb-release
- Adding Docker's GPG key to the repository:And :
sudo mkdir -p /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg echo \ "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
- New package database update (to take into account the added repository):
sudo apt update
- Installing Docker packages:
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-compose-plugin
- Verifying the installed Docker version:It will display something like this:
sudo docker version
Client: Docker Engine - Community Version: 20.10.17 API version: 1.41 Go version: go1.17.11 Git commit: 100c701 Built: Mon Jun 6 23:02:46 2022 OS/Arch: linux/amd64 Context: default Experimental: true Server: Docker Engine - Community Engine: Version: 20.10.17 API version: 1.41 (minimum version 1.12) Go version: go1.17.11 Git commit: a89b842 Built: Mon Jun 6 23:00:51 2022 OS/Arch: linux/amd64 Experimental: false ... ...
- Verifying the status of the Docker service:It will display something like this:
sudo systemctl status docker
● docker.service - Docker Application Container Engine Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled) Active: active (running) since Fri 2022-07-04 17:55:53 CEST; 6min ago TriggeredBy: ● docker.socket Docs: https://docs.docker.com Main PID: 12804 (dockerd) Tasks: 17 Memory: 39.0M CPU: 1.145s CGroup: /system.slice/docker.service └─12804 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock
- Now we can try the traditional "Hello, World !" example
using the following command:It will display:
sudo docker run hello-world
Unable to find image 'hello-world:latest' locally latest: Pulling from library/hello-world 2db29710123e: Pull complete Digest: sha256:7d246653d0511db2a6b2e0436cfd0e52ac8c066000264b3ce63331ac66dca625 Status: Downloaded newer image for hello-world:latest Hello from Docker! This message shows that your installation appears to be working correctly. ... ...
- To avoid having to enter
sudo
before thedocker
command, you can give permissions for Docker to the current user with:Followed by:sudo groupadd docker
Then, log out and log back in for the new rights to take effect. And now we can execute the "Hello World" withoutsudo usermod -aG docker $USER
sudo
:However, beware of security holes, see Docker daemon attack surface.docker run hello-world
Useful links
- Install Docker Engine on Ubuntu (documentation officielle)
- The base command for the Docker CLI (documentation officielle)