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 :: Everything up-to-date git push origin main 
Shell :: cherry pick from another repository 
Shell :: install dbeaver using snap 
Shell :: how to use brew to install ganache 
Shell :: kivy vim plugin 
Shell :: list all commits for repo api github 
Shell :: gtest filter command line 
Shell :: ubuntu default terminal font family 
Shell :: where are dns entries on linux 
Shell :: sed between two patterns 
Shell :: composer install ubuntu 
Shell :: how to check gems installed 
Shell :: using docker as a managed vm 
Shell :: Please tell me who you are. in git 
Shell :: sync gitlab wit github 
Shell :: the ycmd server install 
Shell :: how to trigger new heorku build without diting git 
Shell :: for while bash 
Shell :: move all files in subdirectories to current directory linux 
Shell :: redis 
Shell :: create github repo without browser 
Shell :: linux download from google drive private file 
Shell :: how to delete branch git cli 
Shell :: c# dotnet install Microsoft.Office.Interop.Excel 
Shell :: graphql install strapi 
Shell :: batch file drive 
Shell :: difference between rebase and merge in git 
Shell :: squash my last x commits together using git 
Shell :: check for remote added git 
Shell :: cordova-plugin-camera android crash 
ADD CONTENT
Topic
Content
Source link
Name
5+4 =