Skip to content

Instantly share code, notes, and snippets.

View rognales's full-sized avatar
🏠
Working from home

Zaiman Noris rognales

🏠
Working from home
View GitHub Profile
@rognales
rognales / helpful-docker-commands.sh
Created March 23, 2020 07:04 — forked from garystafford/helpful-docker-commands.sh
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