Skip to content

Instantly share code, notes, and snippets.

@yheihei
Last active July 15, 2026 15:21
Show Gist options
  • Select an option

  • Save yheihei/656bb221d4d51c5614123c23b1ce5898 to your computer and use it in GitHub Desktop.

Select an option

Save yheihei/656bb221d4d51c5614123c23b1ce5898 to your computer and use it in GitHub Desktop.
docker system prune
docker container prune
docker rm -f `docker ps -a -q`
docker image prune
docker rmi $(docker images -a -q)
docker volume prune
docker network prune
@clearclown

Copy link
Copy Markdown

Podman とにかく全削除

podman system prune
podman container prune
podman rm -f `podman ps -a -q`
podman image prune
podman rmi $(podman images -a -q)
podman volume prune
podman network prune

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment