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:
parent
6f655c20aa
commit
ff9feca14c
2
aliases
2
aliases
@ -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'
|
||||
|
Loading…
Reference in New Issue
Block a user