Skip to content

Instantly share code, notes, and snippets.

@medeirosinacio
Last active February 22, 2024 12:28
Show Gist options
  • Save medeirosinacio/2a207036c887438384b4e6ed4545c97d to your computer and use it in GitHub Desktop.
Save medeirosinacio/2a207036c887438384b4e6ed4545c97d to your computer and use it in GitHub Desktop.
clean up docker
docker stop $(docker ps -aq) && \
docker rm $(docker ps -aq) && \
docker system prune -a && \
docker volume rm $(docker volume ls -qf dangling=true) && \
docker network prune
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment