From 1c9e7873a26a5c2bc1d1288544bb8a38e0e72035 Mon Sep 17 00:00:00 2001 From: caskd Date: Thu, 23 Jan 2020 17:51:04 +0100 Subject: [PATCH] Remove old docker-all and docker host as they are host-independent --- custom/others.zsh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/custom/others.zsh b/custom/others.zsh index 979ef43..859d23b 100644 --- a/custom/others.zsh +++ b/custom/others.zsh @@ -1,4 +1,3 @@ -export DOCKER_HOST=ssh://nbg-0 export PATH=$HOME/bin:$HOME/.local/bin:/usr/local/bin:$PATH export LD_LIBRARY_PATH=/usr/lib:/usr/lib32:$HOME/.steam/bin/:$LD_LIBRARY_PATH export EDITOR=vim @@ -11,11 +10,6 @@ fi export GPG_TTY=$(tty) gpg-connect-agent updatestartuptty /bye >/dev/null -function docker-all { - for ((i=0;i<=4;i++)); do - docker -H ssh://fra-n${i} $@ - done -} function build-n-push { docker build ${1} --tag=localhost:5000/${2} --force-rm=true --compress=true && docker push localhost:5000/${2} }