Installation
The following steps are for installing Docker Engine on a Debian system. The instructions are taken from the official documentation.
Install using apt
- Set up Docker's Apt repository.
# Add Docker's official GPG key: sudo apt-get update sudo apt-get install ca-certificates curl gnupg sudo install -m 0755 -d /etc/apt/keyrings curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg sudo chmod a+r /etc/apt/keyrings/docker.gpg # Add the repository to Apt sources: echo \ "deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian \ "$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \ sudo tee /etc/apt/sources.list.d/docker.list > /dev/null sudo apt-get update
- Install the Docker packages.
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
- Test if docker is working by running
sudo docker run hello-world
Post-Installation steps
Make it possible for docker to be run without sudo.
- Create the
docker
group (if necessary).sudo groupadd docker
- Add your user to the
docker
group.sudo usermod -aG docker $USER
- Log out and log back in. If you are running in a VM you might need to restart the VM.
- Verify that
docker
can be run withoutsudo
.docker run hello-world