A Linux Story: Install Docker on Debian

Channel:
Subscribers:
28,700
Published on ● Video Link: https://www.youtube.com/watch?v=JjIbqlEurMI



Duration: 1:44
130 views
5


Hello,

This short tutorial is based on official documentation from Docker website.
Commands used in this tutorial (I had to remove the one with angled bracket because is not allowed in this description):
# cat /etc/debian_version
# lsb_release -cs
# apt remove docker docker-engine docker.io containerd runc
# curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
- content of /etc/apt/sources.list.d/docker.list: deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian buster stable
# cat /etc/apt/sources.list.d/docker.list
# apt update
# apt install docker-ce docker-ce-cli containerd.io
# docker container ls
# ps -ef |grep -i docker

The information and commands are also available in the following article:
https://tar.gz.ro/install-docker-on-debian-linux.html







Tags:
debian
docker
linux
cli
apt
aptitude
apt-get
install