Answers for "ubuntu docker check"

9

how to get list of docker containers

1. docker container ls -a
2. docker ps -a
Posted by: Guest on May-23-2020
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

Browse Popular Code Answers by Language