Answers for "install docker with terminal linux"

1

how to install docker in ubuntu using terminal

sudo apt install docker.io # install docker
sudo systemctl start docker # start service
sudo systemctl stop docker # stop service
sudo systemctl status docker # To check status of docker
docker --version # to check the version of docker
Posted by: Guest on December-09-2020
-1

install docker on linux

$ curl -fsSL https://get.docker.com/ | sh
Posted by: Guest on September-24-2021

Code answers related to "install docker with terminal linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language