aboutsummaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2020-02-12 23:47:14 -0500
committertdro <tdro@users.noreply.github.com>2020-02-12 23:47:14 -0500
commit7827a697eae94bdcfc7759fc95ec71db7c7af95c (patch)
treea312baa504aaaf04324ff1936f16962fa830878a /.bashrc
parent2305df99d1aa2c40672272601647f4cfdd6b21d1 (diff)
downloaddotfiles-7827a697eae94bdcfc7759fc95ec71db7c7af95c.tar.gz
dotfiles-7827a697eae94bdcfc7759fc95ec71db7c7af95c.tar.bz2
dotfiles-7827a697eae94bdcfc7759fc95ec71db7c7af95c.zip
.bashrc: Rename docker prune function
Use shorter name
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/.bashrc b/.bashrc
index 85e8b60..7109be8 100644
--- a/.bashrc
+++ b/.bashrc
@@ -176,4 +176,4 @@ history-remove-duplicates() {
docker-rootfs() { id=$(docker run -d "$1" /bin/true) && docker export -o "$2" "$id" && docker container rm "$id"; }
# remove dangling docker images
-docker-remove-dangling() { docker container prune --force && docker rmi "$(docker images -f 'dangling=true' -q)"; }
+docker-cprune() { docker container prune --force && docker rmi "$(docker images -f 'dangling=true' -q)"; }