Skip to content
GitLab
Explore
Sign in
relate
docker-clean-containers.sh
Find file
Normal view
Permalink
docker-clean-containers.sh
72 B
Newer
Older
Shuffle some scripts
Andreas Klöckner
committed
Sep 10, 2014
1
#! /bin/bash
Use -f to forcibly mop up leftover docker containers
Andreas Klöckner
committed
Jul 29, 2015
2
docker
rm
-f
$(
docker ps
-a
|
cut
-d
' '
-f1
|
tail
-n
+2
)