Useful docker commands
- Bilal Malik
- Jul 25, 2019
- 1 min read
To see the list of images
docker images
To see the list of running containers
docker ps
To see the list of all containers (both running and stopped containers)
docker ps -a
Remove(Delete) Image
docker rmi image_name
Remove(Delete) container
docker rm container_name
Start and Stop Docker containers
docker start container
docker stop container
Stop all the containers at one command
docker stop $(docker ps -a -q)
Comments