From 63cc64ad897a99a1e0e25f3fecdad5e401be85df Mon Sep 17 00:00:00 2001 From: Konstantin Bukley Date: Wed, 4 May 2022 12:57:33 +0300 Subject: [PATCH] bash: update --- bash/.bash_profile | 3 +++ bash/.bashrc | 6 +++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/bash/.bash_profile b/bash/.bash_profile index 4d12f2e..81e3ddf 100644 --- a/bash/.bash_profile +++ b/bash/.bash_profile @@ -7,6 +7,8 @@ eval "$(rbenv init - --no-rehash)" eval "$(zoxide init bash)" +. /opt/homebrew/opt/asdf/libexec/asdf.sh + # eval "$(docker-machine env default)" # export NVM_DIR="$HOME/.nvm" @@ -14,6 +16,7 @@ eval "$(zoxide init bash)" export PATH="/usr/local/opt/icu4c/bin:$PATH" export PATH="/usr/local/opt/icu4c/sbin:$PATH" +export PATH="/opt/homebrew/sbin:$PATH" export PATH="/opt/homebrew/opt/avr-gcc@8/bin:$PATH" export PATH="/opt/homebrew/opt/arm-gcc-bin@8/bin:$PATH" export PATH="/usr/local/sbin:$PATH" diff --git a/bash/.bashrc b/bash/.bashrc index bad2afe..db361d6 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -90,8 +90,12 @@ alias rdr='bin/rails db:rollback' alias rds='bin/rails db:seed' alias d='docker' -alias k='kubectl' alias dc='docker-compose' +alias dcu='docker-compose up -d' +alias dcd='docker-compose stop' +alias dcr='docker-compose restart' +alias dcl='docker-compose logs -tf --tail="50"' +alias k='kubectl' alias rc='bin/rails c' alias rs='bin/rails s -p3001'