Fixing quotes around new docker aliases which cause them to execute

pull/1260/head
Jason Al-Mansor 2018-11-01 10:45:08 -04:00
parent fbefcb860b
commit 74b1fb8185
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 alias dkex='docker exec -it ' # Useful to run any commands into container without leaving host
# Added more recent cleanup options from newer docker versions # Added more recent cleanup options from newer docker versions
alias dkip=`docker image prune -a -f` alias dkip='docker image prune -a -f'
alias dkvp=`docker volume prune -f` alias dkvp='docker volume prune -f'
alias dksp=`docker system prune -a -f` alias dksp='docker system prune -a -f'