Comments on How to Install Docker on Debian 11

Docker is a set of open platforms that provides OS-level virtualization for developing, shipping, and running applications. In this tutorial, you will learn how to install Docker on the Debian 11 Bullseye. Also, you will learn the basic usage of Docker for running containers and managing images.

3 Comment(s)

Add comment

Please register in our forum first to comment.

Comments

By: Jaap

Hello, I keep on getting the same messages when adding the sourcelist:

Err:5 https://download.docker.com/linux/debian \ Release

  404  Not Found [IP: 18.66.15.100 443]

Reading package lists... Done

E: The repository 'https://download.docker.com/linux/debian \ Release' does not have a Release file.

N: Updating from such a repository can't be done securely, and is therefore disabled by default.

N: See apt-secure(8) manpage for repository creation and user configuration details.

 

Didn't find a proper solution yet.

Thanks,

Jaap

By: till

Seems as if the lsb release is not returned properly on your system. Try this command instead (it's just one long command):

 

echo "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian bullseye stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null

By: Chuck Forry

excellent tutorial.