aboutsummaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2020-06-04 19:07:09 -0400
committertdro <tdro@users.noreply.github.com>2020-06-04 19:07:09 -0400
commitc62e1c4f520786bd7d4056a57e6f4458e0b8f995 (patch)
treee6db0efddfabb69beb23e50054ff0203756a318e /.bashrc
parent625b6c0fb42c6c38d9f273a7fe0e0a6c7c654f1c (diff)
downloaddotfiles-c62e1c4f520786bd7d4056a57e6f4458e0b8f995.tar.gz
dotfiles-c62e1c4f520786bd7d4056a57e6f4458e0b8f995.tar.bz2
dotfiles-c62e1c4f520786bd7d4056a57e6f4458e0b8f995.zip
.bashrc: Remove docker prune helper
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)"; }