DecSecOps

Q1. Title – List of 15 popular commands of docker Which Docker version$ docker –version Images – list of images on docker$ docker images Downloading image from repository$ docker pull httpd ‘ps -a’ – List all the docker containers running/exited/stopped with container details.$ docker ps -a exec – Access the docker container and run commands inside the container.$ docker exec -it Run – Run the docker image mentioned in the command.$ docker run -it -d httpd Removing container – Remove

Read more