aboutsummaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc3
1 files changed, 0 insertions, 3 deletions
diff --git a/.bashrc b/.bashrc
index eda6be0..1a61721 100644
--- a/.bashrc
+++ b/.bashrc
@@ -115,6 +115,3 @@ history-remove-duplicates() { awk '!visited[$0]++' "$HOME/.bash_history" > /tmp/
# extract docker container as rootfs
docker-rootfs() { id=$(docker run -d "$1" /bin/true) && docker export -o "$2" "$id" && docker container rm "$id"; }
-
-# remove dangling docker images
-docker-cprune() { docker container prune --force && docker rmi "$(docker images -f 'dangling=true' -q)"; }