Page MenuHomePhabricator
Paste P17711

installing docker on Debian
ActivePublic

Authored by Dzahn on Nov 9 2021, 2:33 PM.
Tags
None
Referenced Files
F34739264: installing docker on Debian
Nov 9 2021, 2:35 PM
F34739262: raw-paste-data.txt
Nov 9 2021, 2:33 PM
Subscribers
None
apt-get remove docker docker.io containerd runc # just in case
apt-get update # update package lists
apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common
curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add -
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable"
apt-get update
apt-get install docker-ce docker-ce-cli containerd.io
usermod -aG docker <your user> # logout/in your user after this

Event Timeline

Dzahn changed the title of this paste from untitled to installing docker on Debian.
Dzahn edited the content of this paste. (Show Details)