We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc8c446 commit 68d6d40Copy full SHA for 68d6d40
Chapter4
Chapter5
Chapter6
docker_cleanup.sh
@@ -0,0 +1,6 @@
1
+#!/bin/sh
2
+docker kill $(docker ps -q)
3
+docker rm -f $(docker ps -a -q)
4
+docker rmi -f $(docker images -q -f dangling=true)
5
+docker rmi -f $(docker images -q)
6
+
0 commit comments