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

how to run debian on docker

docker run -it debian
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 :: pandoc download ubuntu 
Shell :: how to know my ros version 
Shell :: create tar gz file from directory 
Shell :: path of recycle bin in windows 10 
Shell :: tqdm install 
Shell :: vlc install linux 
Shell :: update nextjs to last version 
Shell :: oh my zsh highlight 
Shell :: Add the following lines to your $HOME/.bash_profile 
Shell :: run laravel git project 
Shell :: heroku cli login 
Shell :: kill a process on a port ubuntu 
Shell :: mongodb list users 
Shell :: docker runlike 
Shell :: process runninng on particular port 
Shell :: weka ubuntu 
Shell :: how to uninstall vscode in ubuntu 
Shell :: gyp error npm install 
Shell :: The requested nginx plugin does not appear to be installed certbot 
Shell :: npm does not support Node.js v10.19.0 
Shell :: base64 decode in powershell 
Shell :: linux failed to save insufficient permissions vscode 
Shell :: pip install tensorflow not working 
Shell :: install nginx amazon linux 2 
Shell :: bash get hour 
Shell :: remove stash files git 
Shell :: linux filter groups 
Shell :: composer remove package 
Shell :: setup user in git 
Shell :: vlc download for linux 
ADD CONTENT
Topic
Content
Source link
Name
6+3 =