Answers for "install docker linux mint"

0

how to install docker linux mint

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
Posted by: Guest on June-21-2020
0

install docker linux mint

sudo apt -y install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(. /etc/os-release; echo "$UBUNTU_CODENAME") stable"
sudo apt update
sudo apt install docker-ce
sudo usermod -aG docker $USER
Posted by: Guest on October-27-2021

Code answers related to "install docker linux mint"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language