Skip to content

Instantly share code, notes, and snippets.

@voidvn
Created June 5, 2023 14:47
Show Gist options
  • Save voidvn/be0608c96962395e4548cee88a85324a to your computer and use it in GitHub Desktop.
Save voidvn/be0608c96962395e4548cee88a85324a to your computer and use it in GitHub Desktop.
Stop and clear all docker containers and images on the server
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
docker rmi $(docker images -q)
# check free space
df -h
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment