Skip to content

Instantly share code, notes, and snippets.

View Zefirrat's full-sized avatar

Leonid Pavlov Zefirrat

  • Russian Federation, Republic Bashkortostan, Ufa
View GitHub Profile
@garystafford
garystafford / helpful-docker-commands.sh
Last active April 20, 2025 11:08
My list of helpful docker commands
###############################################################################
# Helpful Docker commands and code snippets
###############################################################################
### CONTAINERS ###
docker stop $(docker ps -a -q) #stop ALL containers
docker rm -f $(docker ps -a -q) # remove ALL containers
docker rm -f $(sudo docker ps --before="container_id_here" -q) # can also filter
# exec into container