Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install docker on debian

Delete any outdated packages: 
sudo apt-get purge docker lxc-docker docker-engine docker.io

Update the default respository: 
sudo apt-get update

Download the following dependencies: 
sudo apt-get install apt-transport-https ca-certificates curl gnupg2 software-properties-common

Download Docker’s official GPG key to verify the integrity of packages
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -

Add the Docker repository to your system repository
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian buster stable"

Update the apt repository:
sudo apt-get update

Install Docker Engine and containerd:
sudo apt-get install docker-ce docker-ce-cli containerd.io

Check the status by typing:
systemctl status docker

Another way to check the installation:
docker -v

Optional: Verify the Installation With a Hello World Image
docker run hello-world

To remove docker:
sudo apt-get purge docker-ce
sudo rm -rf /var/lib/docker
Comment

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.
Comment

install docker debian

sudo apt -y install apt-transport-https ca-certificates curl gnupg2 software-properties-common
Comment

debian install docker

# Install Docker - for Debian (buster 11)
sudo su
apt install ca-certificates gnupg lsb-release -y
mkdir -p /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
chmod a+r /etc/apt/keyrings/docker.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
apt update -y
apt install docker-ce docker-ce-cli containerd.io docker-compose-plugin -y
apt install docker-ce=5:20.10.17~3-0~debian-bullseye docker-ce-cli=5:20.10.17~3-0~debian-bullseye containerd.io docker-compose-plugin -y
Comment

install docker linux debian 10

sudo apt-get purge docker lxc-docker docker-engine docker.io
Comment

install docker on linux debian

sudo docker run hello-world
Comment

install docker debian

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

install docker debian 10

$ curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
Comment

PREVIOUS NEXT
Code Example
Shell :: check git status 
Shell :: changed files githib 
Shell :: fix merge conflict in package-lock.json 
Shell :: yum update 
Shell :: the most profitable business in zimbabwe 
Shell :: powershell datetime to string 
Shell :: burp suite kali linux 
Shell :: how to install gitlab on mac os 
Shell :: powershell merge csv files 
Shell :: get name of files in directory 
Shell :: first commit github 
Shell :: github create directory 
Shell :: rename directory from command line 
Shell :: bokeh install 
Shell :: replace main with another branch 
Shell :: jenkins local 
Shell :: install playit to ubuntu 
Shell :: lumbha ram github 
Shell :: uncommitted modifications to Homebrew/homebrew-core 
Shell :: bash mail subject variable 
Php :: php header json 
Php :: laravel clear route cache 
Php :: php replace spaces with dash 
Php :: php replace by <br 
Php :: eloquent get random 
Php :: access to this resource on the server is denied laravel 
Php :: blade number format by comma 
Php :: storage link laravel 
Php :: php loop 
Php :: strtoupper in php 
ADD CONTENT
Topic
Content
Source link
Name
8+8 =