1
0
mirror of https://github.com/frebib/dotfiles.git synced 2024-06-14 12:57:23 +00:00

aliases: replace dklrm with drmf

Recently I learnt that `docker rm -f` both stops and removes the
container in one go, without any races. It's much cleaner than the hack
from before so replace it outright.

Signed-off-by: Joe Groocock <me@frebib.net>
This commit is contained in:
Joe Groocock 2021-02-13 14:46:19 +00:00
parent 6f655c20aa
commit ff9feca14c
Signed by: frebib
GPG Key ID: E0B16BEACFBB6A86

View File

@ -212,7 +212,7 @@ alias dbl='docker build --pull'
alias dbl.='docker build --pull .'
alias drun='docker run -ti'
alias dkl='docker kill'
dklrm() { docker kill $@ ; docker rm $@; }
alias drmf='docker rm -f'
alias dst='docker stop'
alias drst='docker restart'
alias dnet='docker network'