Last active
September 26, 2022 10:35
-
-
Save memoryleak/df8b8e32b94829c594f017fed30072b0 to your computer and use it in GitHub Desktop.
docker-full-reset
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker stop $(docker ps -a -q); docker rm $(docker ps -aq); docker network prune -f; docker volume prune -f |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker stop $(docker ps -a -q); docker rm $(docker ps -aq); docker rmi -f $(docker images -a -q); docker network prune -f; docker volume prune -f |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
podman stop $(podman ps -a -q); podman rm $(podman ps -aq); podman rmi -f $(podman images -a -q); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
podman stop $(podman ps -a -q); podman rm $(podman ps -aq); podman rmi -f $(podman images -a -q); podman network prune -f; podman volume prune -f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment