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 :: bash create symlink to symlinks 
Shell :: mvn clean install skip checkstyle 
Shell :: grep search 
Shell :: compare two files shell script 
Shell :: copy from vim to clipboard 
Shell :: bash get unique lines 
Shell :: copy file from ssh server to local 
Shell :: Android get abi version 
Shell :: install kubebuilder in macbook pro 
Shell :: ubuntu server 20.04 list only user names 
Shell :: latest package yarn dependencies 
Shell :: permissions do not allow pasting files in this directory 
Shell :: nvm change version 
Shell :: terminal trash folder 
Shell :: how to add this package include: package:flutter_lints/flutter.yaml 
Shell :: pushing an existing repository from the command line 
Shell :: linux ubuntu how to install AppIndicator 
Shell :: how to set gopath/bin linux 
Shell :: branch conflicts 
Shell :: make tar.gz 
Shell :: oh-my-posh autosuggestions 
Shell :: git push commands 
Shell :: No such file as readline.h 
Shell :: grep get everything between two strings 
Shell :: apply stash git 
Shell :: input prompt in command line 
Shell :: bitnami cert 
Shell :: bash keyboard shortcuts 
Shell :: configurer kdiff3 
Shell :: difference between rebase and merge in git 
ADD CONTENT
Topic
Content
Source link
Name
1+7 =