Horje
install docker debian 10 Code Example
debian docker
# Install docker
sudo apt install -y apt-transport-https ca-certificates curl gnupg2 software-properties-common
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable"
sudo apt update
apt-cache policy docker-ce
sudo apt install -y docker-ce

# Install docker-compose
sudo curl -L "https://github.com/docker/compose/releases/download/1.27.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
how to install docker on Debian 10
# From docker.com repositories in Debiam as root
# Prereqs
apt update
apt install ca-certificates curl gnupg lsb-release
# Add cert
curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
# Add repository
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian \
$(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
# Install docker
apt update
apt install docker-ce docker-ce-cli containerd.io
# Note: apt upgrade will upgrade to highest version if multiple repositories exist with different version.
install docker debian
 $ sudo apt-get update
 $ sudo apt-get install docker-ce docker-ce-cli containerd.io
install docker linux debian 10
sudo apt-get purge docker lxc-docker docker-engine docker.io
install docker debian
sudo apt -y install apt-transport-https ca-certificates curl gnupg2 software-properties-common
Source: sqx-bki.fr
install docker debian 10
$ curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg




Shell

Related
install docker-machine linux Code Example install docker-machine linux Code Example
run mongodb on docker linux Code Example run mongodb on docker linux Code Example
powershell string with quotes Code Example powershell string with quotes Code Example
How to commit the code to the github Code Example How to commit the code to the github Code Example
install AdminLTE Code Example install AdminLTE Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8