You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
379 B
19 lines
379 B
# Stop all running containers
|
|
docker stop $(docker ps -q)
|
|
|
|
# Remove all containers
|
|
docker rm $(docker ps -a -q)
|
|
|
|
# Remove all images
|
|
docker rmi -f $(docker images -q)
|
|
|
|
# Remove all networks
|
|
docker network rm $(docker network ls -q)
|
|
|
|
# Remove all volumes
|
|
docker volume rm $(docker volume ls -q)
|
|
|
|
# Alternatively, use prune to clean up everything
|
|
docker system prune -a --volumes
|
|
|