From d713c4fbcee7e94dbab281bfcd4cea8bc67c52ae Mon Sep 17 00:00:00 2001 From: Alex Jahraus Date: Mon, 25 Jun 2018 17:35:38 +0200 Subject: [PATCH] Add docker-compose to the shell init files --- grc.bashrc | 1 + grc.fish | 2 +- grc.zsh | 3 +++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/grc.bashrc b/grc.bashrc index 7ec67b7..e065abf 100644 --- a/grc.bashrc +++ b/grc.bashrc @@ -6,6 +6,7 @@ if [ "$TERM" != dumb ] && [ -n "$GRC" ]; then alias df='colourify df' alias diff='colourify diff' alias docker='colourify docker' + alias docker-compose='colourify docker-compose' alias docker-machine='colourify docker-machine' alias du='colourify du' alias env='colourify env' diff --git a/grc.fish b/grc.fish index e4f91f1..0f006eb 100644 --- a/grc.fish +++ b/grc.fish @@ -8,7 +8,7 @@ set -U grc_plugin_execs cat cvs df diff dig gcc g++ ls ifconfig \ make mount mtr netstat ping ps tail traceroute \ - wdiff blkid du dnf docker docker-machine env id ip iostat \ + wdiff blkid du dnf docker docker-compose docker-machine env id ip iostat \ last lsattr lsblk lspci lsmod lsof getfacl getsebool ulimit uptime nmap \ fdisk findmnt free semanage sar ss sysctl systemctl stat showmount \ tcpdump tune2fs vmstat w who diff --git a/grc.zsh b/grc.zsh index ecb2edc..07d69e0 100644 --- a/grc.zsh +++ b/grc.zsh @@ -8,6 +8,9 @@ if [[ "$TERM" != dumb ]] && (( $+commands[grc] )) ; then df \ diff \ dig \ + docker \ + docker-compose \ + docker-machine \ gcc \ gmake \ ifconfig \