This commit is contained in:
Jérémie Grodziski
2020-07-21 21:50:57 +02:00
committed by GitHub
parent abeac69e13
commit 1340460b41

View File

@@ -23,6 +23,7 @@
# drmc : remove all exited containers # # drmc : remove all exited containers #
# drmid : remove all dangling images # # drmid : remove all dangling images #
# drun <image> : execute a bash shell in NEW container from <image> # # drun <image> : execute a bash shell in NEW container from <image> #
# dsp : docker system prune --all #
# dsr <container>: stop then remove <container> # # dsr <container>: stop then remove <container> #
# # # #
############################################################################ ############################################################################
@@ -102,4 +103,5 @@ alias dpsa="docker ps -a"
alias drmc=drmc-fn alias drmc=drmc-fn
alias drmid=drmid-fn alias drmid=drmid-fn
alias drun=drun-fn alias drun=drun-fn
alias dsp="docker system prune --all"
alias dsr=dsr-fn alias dsr=dsr-fn