Skip to content

Instantly share code, notes, and snippets.

@bigslycat
bigslycat / docker-cheatsheet.sh
Last active January 22, 2020 17:04
Docker commands cheatsheet
# Stop all running containers
docker stop $(docker ps -q | paste -sd " " -)
# Stop and remove all containers
docker rm -f $(docker ps -aq | paste -sd " " -)
# Stop and remove all images
docker rmi -f $(docker images -aq | paste -sd " " -)