Update docker.aliases.bash to remove execution

Currently executes docker prune each time aliases loaded 🤦‍♂️
pull/1261/head
qoqɯoɹ 2018-11-01 16:15:31 -04:00 committed by GitHub
parent fbefcb860b
commit 26636ee483
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -28,6 +28,6 @@ alias dkelc='docker exec -it `dklcid` bash' # Enter last container (works with D
alias dkex='docker exec -it ' # Useful to run any commands into container without leaving host
# Added more recent cleanup options from newer docker versions
alias dkip=`docker image prune -a -f`
alias dkvp=`docker volume prune -f`
alias dksp=`docker system prune -a -f`
alias dkip='docker image prune -a -f'
alias dkvp='docker volume prune -f'
alias dksp='docker system prune -a -f'