# List all containers (only IDs)
docker ps -aq
# Stop all running containers
docker stop $(docker ps -aq)
# Remove all containers
docker rm $(docker ps -aq)
# Remove all images
docker rmi $(docker images -q)
//Check if the container is running
docker ps -a
//stop the container
docker stop <container_id>
//remove the container
docker rm <container_id>
Remove Docker Container
# List all containers (only IDs)
docker ps -aq
# Stop all running containers
docker stop $(docker ps -aq)
# Remove all containers
docker rm $(docker ps -aq)
# Remove all images
docker rmi $(docker images -q)
#remove container
sudo docker rm /container id/
docker system prune
docker container rm [container id]
cheat sheet
https://github.com/lifeeric/docker-cheat-sheet