Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
November 22, 2021 09:22 pm GMT

Useful Docker Commands

Today I learned some docker commands, let me share it with you:

To stop all containers simply type:

docker kill $(docker ps -q)

docker ps - list all running containers

flag -q - displays only ids of these containers

docker kill - stops containers

If you want to remove all containers use the command:

docker rm $(docker ps -a -q)

docker rm - removes containers

flag -a - lists all containers not only running ones

The rest is similar to previous command

To remove all docker images type:

docker rmi $(docker images -q)

docker rmi - removes images

docker images - q - lists ids of all images


Original Link: https://dev.to/quentindamianino/useful-docker-commands-2mi0

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To